Home > front end >  Can Google Apps Script handle HTTP DELETE requests?
Can Google Apps Script handle HTTP DELETE requests?

Time:04-26

It handles GET and POST requests just fine, via the respective doGet() & doPost() request handler functions. But what about DELETE requests? Is there some kind of implementation of a doDelete() function? My particular use case requires that I can send and receive a response from a DELETE request, in addition to POST and GET.

CodePudding user response:

According to https://developers.google.com/apps-script/guides/web there is no doDelete or something similar, only doPost and doGet.

  • Related