Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

420
Views
POST Request does not show any value in node JS

I'm trying to send a post request to my node js server through google app script, but the received data is {}.

I tried sending a Post through zapier and postman, zapier will work if I set the payload type to "form" and postman will work if I set the body as x-www-form-urlencoded.

Any idea to make it work on google app script ?

enter image description here

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

Have you loaded json and urlencoded in your node server?

app.use(express.json());
app.use(express.urlencoded({ extended: true }));
over 4 years ago · Santiago Trujillo Report

0

In your script, how about the following modification?

From:

var requestOptions = {
  "method" : "post",
  "contentType" : "application/x-www-form-urlencoded",
  "body" : payload
  //"body" : payload,

}

To:

var requestOptions = {
  "method": "post",
  "payload": payload
};
  • Property of body is not existing in UrlFetchApp.
  • application/x-www-form-urlencoded is the default content type.
  • When the request of this modification is run, payload is requested as the form data.

Note:

  • As the additional information, in your server-side of Node.js, if app.use(bodyParser.json()); is used, it is required to request as application/json as follows. Please be careful about this.

      var requestOptions = {
        "method": "post",
        "payload": JSON.stringify(payload),
        "contentType": "application/json"
      };
    

Reference:

  • fetch(url, params)
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!