doPost not working in Google app script

后端 未结 4 2213
慢半拍i
慢半拍i 2020-12-29 14:09

I came across various questions but none of them could solve my problem. I wrote a simple doPost() code in google app script:

function doPost(e)         


        
4条回答
  •  心在旅途
    2020-12-29 14:50

    One of the reason can be you are using a Rest client like Postman. It won't work, though I don't know the reason why.

    Try with a normal form like this and it will work:

    
    
    
    
    
    First name:

    Last name:


提交回复
热议问题