Hi Everyone!
I want to implement Encryption & Decryption in Thunkable X, with some powerful methods like AES256. It’s currently only possible that I do it with hosting my php webpage, and calling it like xxxx.com/test.php?text=abcd
& it would return the encrypted value.
Now, this method brings along the fear of hackers intercepting incoming data on my webpage, and re-directing it to theirs.
So, is their any way that I would upload the .php file in my app’s assets, and set Web API’s url to it? So the URL would be like file:///path/to/the/file?text=abcd
Thanks!