gpt4 book ai didi

javascript - 如何禁用SSL验证nodejs Loopback Request Plugin

转载 作者:太空宇宙 更新时间:2023-11-03 14:36:52 24 4
gpt4 key购买 nike

我是 nodejs 和 loopback 的新手。我想发帖请求。它在连接到我们的开发 API 时工作正常。但是当连接到我们的生产 api 时,使用 https。它似乎被阻止了。

var request = require('request');

request.post({
url: "",//removed for obvious reasons
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
form: {
myfield: "myfieldvalue"
}
},function (response, err, body){
console.log('Body:',JSON.parse(body));
}.bind(this));

最佳答案

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

我成功了。在 here 中找到解决方案.

关于javascript - 如何禁用SSL验证nodejs Loopback Request Plugin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46975023/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com