I am sendin a request from node server to some other server , but i need to send content type
application/json
How can i send that , I am using this format
request.post('.php/rest/V1/integration/admin/token',{form:postData},function (error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
console.log('body:', body); // Print the HTML for the Google homepage.
res.json({
'error': error,
'statusCode': response && response.statusCode,
'body': body
})
});
I am getting error while I am trying this
request.post(
'.php/rest/V1/integration/admin/token',
{
form:postData,
headers:{
"Content-Type": "application/json"
}
},function (error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
console.log('body:', body); // Print the HTML for the Google homepage.
res.json({
'error': error,
'statusCode': response && response.statusCode,
'body': body
})
});
"message":"Server cannot understand Content-Type HTTP header media type application/x-www-form-urlencoded"
I am sendin a request from node server to some other server , but i need to send content type
application/json
How can i send that , I am using this format
request.post('https://server./index.php/rest/V1/integration/admin/token',{form:postData},function (error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
console.log('body:', body); // Print the HTML for the Google homepage.
res.json({
'error': error,
'statusCode': response && response.statusCode,
'body': body
})
});
I am getting error while I am trying this
request.post(
'https://server./index.php/rest/V1/integration/admin/token',
{
form:postData,
headers:{
"Content-Type": "application/json"
}
},function (error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
console.log('body:', body); // Print the HTML for the Google homepage.
res.json({
'error': error,
'statusCode': response && response.statusCode,
'body': body
})
});
Share Improve this question edited Dec 12, 2017 at 11:54 Ashutosh Jha asked Dec 12, 2017 at 11:40 Ashutosh JhaAshutosh Jha 16.4k11 gold badges58 silver badges86 bronze badges 5"message":"Server cannot understand Content-Type HTTP header media type application/x-www-form-urlencoded"
- There is some examples with content-type in the docs: github./request/request – Héctor Valls Commented Dec 12, 2017 at 11:43
- 1 Possible duplicate of pass JSON to HTTP POST Request – Mika Sundland Commented Dec 12, 2017 at 11:44
- When you provide a key json it automatically set content type application/json – Manjeet Singh Commented Dec 12, 2017 at 11:56
- @ManjeetThakur but I am getting this error "Server cannot understand Content-Type HTTP header media type application/x-www-form-urlencoded" , and i am able to post data from postman if I set appliction/json – Ashutosh Jha Commented Dec 12, 2017 at 12:00
- can you post the image of postman how you use this – Manjeet Singh Commented Dec 12, 2017 at 12:02
4 Answers
Reset to default 8Please change key name
form
tojson
.
request.post('https://server./index.php/rest/V1/integration/admin/token', {
json: postData
}, function(error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
console.log('body:', body); // Print the HTML for the Google homepage.
res.json({
'error': error,
'statusCode': response && response.statusCode,
'body': body
})
});
As per the docs you need to set json:true
for application/json
to be added to the header
let data = { foo: "bar" }
request.post({
uri: 'www.domain./upload',
body: data,
json:true
}, function (err: any, res: any, body: any) {
//handle callback
});
See the documentation. You just need to include a value for the headers
property in the options object:
request.post(
'https://server./index.php/rest/V1/integration/admin/token',
{
form: postData, /* Ensure this is a string of JSON! */
headers:{
"Content-Type": "application/json"
}
},
your_callback_function
);
Fixed by this ,
request.post({
url: url,
method: "POST",
headers: {
"content-type": "application/json",
},
json: postData
},function (error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
console.log('body:', body); // Print the HTML for the Google homepage.
res.json({
'error': error,
'statusCode': response && response.statusCode,
'body': body
})
});