1 year ago
#77244
Dave Reckoning
Can you use 'doPost' in a Library?
I'm trying to put a doPost inside an Apps Script library. Is that possible? It doesn't seem to work like this?
function doGet(e) {
return HtmlService.createHtmlOutput("hello");
}
function doPost(e) {
MyLibrary.doPost(e)
}
google-apps-script
web-applications
triggers
libraries
0 Answers
Your Answer