How to use a google apps script web app with JDBC to access a mysql database with AppInventor
what is the meaning of secret key?
var key = "your_secret"; //required secret key
This just provides an extra level of security:
// working with AI2...
function doPost(e) {
if (e.parameter.key == key) {
so that if you do not have the secret key you cannot run the script to access the mysql data.
1 Like
thank you