Host Custom Forms Google Apps Script – Can I Host Custom Forms Using Google Apps Script?

google-apps-script

Is it possible to have custom forms created using Google Apps Script to have their own URL just like Google Forms do and be publicly available?

Can I host these custom forms somewhere without using Google Sites? For example, Google Drive?

Please can you point me in right direction.

Best Answer

Yes, you can, by creating a Google Apps Scripts webapp.

It is basically a Google Apps Script which has a doGet() and/or doPost() function.

Your webapp will have a URL similar to that of a Google Form.

See the documentation for Google Apps Scripts Webapps.