最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to set content type in "request" npm package - Stack Overflow

programmeradmin1浏览0评论

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
        })
    });

"message":"Server cannot understand Content-Type HTTP header media type application/x-www-form-urlencoded"

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
  • 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
Add a ment  | 

4 Answers 4

Reset to default 8

Please change key name form to json.

    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
    })
});
发布评论

评论列表(0)

  1. 暂无评论