In the previous post we explained how appscript gives you a webserver including https certificate: for free!

Not interested in Webapps / JSON (yet), but still curious about appscript? Read how to teach yourself appscript here

Anynomous endpoints

If you want other webservices to connect to your appscript, you’ll want anonymous access (see settings in Publish > Deploy as webapp)

The following matrix applies now:

webrequest Anonymous webrequest CORS application/json application/javascript text/xml text/plain text/html
GET /exec?path=/foo
POST /exec?path=/foo&method=GET
POST /exec?path=/foo&method=POST
POST /exec?path=/foo&method=PUT
POST /exec?path=/foo&method=DELETE
POST /exec?path=/foo&method=OPTIONS

⚠ = will trigger this application was created by another user-banner if not logged in as appscript-owner. See chapter Banner 101

The method and path-parameters above, are just an example to mimic a RESTful workflow.

Gexpress

Check Gexpress for a more simpler, express-style way of writing endpoints.

Further reading