简体   繁体   English

NodeJS Request Post不适用于HTTPS网站

[英]NodeJS Request Post not working for HTTPS website

Im using NodeJS Request - Simplified HTTP Client 我正在使用NodeJS 请求 - 简化的HTTP客户端

I seem to have problem working with HTTPS website, I am not getting result. 我似乎在使用HTTPS网站时遇到问题,我没有得到结果。

var request = require('request');

request.post({
    url: "",//your url
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded'
    },

    form: {
        myfield: "myfieldvalue"
    }
},function (response, err, body){
    console.log('Body:',JSON.parse(body));
}.bind(this));

Tested the API endpoint(which I cant share) on Postman, I just turn off SSL and it works, how do I do the same with request plugin? 在Postman上测试了API端点(我无法分享),我只是关闭SSL并且它可以工作,我如何对请求插件做同样的事情?

Just add this lines: 只需添加以下行:

    rejectUnauthorized: false,//add when working with https sites
    requestCert: false,//add when working with https sites
    agent: false,//add when working with https sites

So your code would look like this: 所以你的代码看起来像这样:

var request = require('request');

request.post({
    url: "",//your url
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded'
    },
    rejectUnauthorized: false,//add when working with https sites
    requestCert: false,//add when working with https sites
    agent: false,//add when working with https sites
    form: {
        myfield: "myfieldvalue"
    }
},function (response, err, body){
    console.log('Body:',JSON.parse(body));
}.bind(this));

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM