How to add parameters in NodeJS' sync-request

5.8k Views Asked by At

I have tried the following:

var request = require('sync-request');

var res = request('POST', 'http://someurl.com', {

  body: {

    'city': 'Dubai'

  }

});

But didn't get any parameters on the Server.

3

There are 3 best solutions below

2
On BEST ANSWER

I have solved it myself (by modifying the Options as follows):

var request = require('sync-request');

var res = request('POST', 'http://someurl.com', {

  headers: {       
    'content-type': 'application/x-www-form-urlencoded'
  },

  body: 'city=Dubai'

});

It works well.

0
On

If you want a strongly-typed client, you can try out ts-sync-request.

NPM: https://www.npmjs.com/package/ts-sync-request

This library is a wrapper around sync-request.

You can attach a header & make a request like below:

import { SyncRequestClient } from 'ts-sync-request/dist'
let url = "http://someurl.com";

let response = new SyncRequestClient()
                            .addHeader("content-type", "application/x-www-form-urlencoded")
                        .post<string, MyResponseModel>(url, "city=Dubai"); 
0
On

This worked for me:

request('POST', 'http://someurl.com', {
        json :{
            "key": value
        }
    }); 

On the backend(Django in my case), I just extracted the request body using request.body.