Hello, I am new to App Inventor 2 and am in need of some help about Uriencode.
I am developing and app in wchich the user has to take a picture and, afterwards, input some other data (this app is meant to replace an older one). After all data has been input, they are all saved on an Sql Server through a Json web service. This Sql Server, then, connects to another program which retrieves all of the data including the picture.
The old app encodes the picture and saves it as a huge string on the Sql Server which is read on the other program. Now, here is my problem: I simply can't save the picture the same way. I read that I am supposed to use the component Web1.UriEncode, but the string generated is completely different. Also, I can't seem to call for it in any way.
This is a sample of how the string encoded by the older app looks like (the actual string is over 40,000 characters long): /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB
...
This is how App Inventor 2 encodes: file%3A%2F%2F%2Fstorage%2Femulated%2F0%2FPictures%2Fapp_inventor_[xxxxxxx].jpg
My questions are: how can I call it?