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.
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.
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");
I have solved it myself (by modifying the Options as follows):
It works well.