0
私はnodejsとループバックの両方が初めてです。私は投稿要求をしたい。私たちのdev apiに接続するときにそのうまく動作します。しかし、私たちのプロダクションAPIにhttpsで接続すると。そのブロックされているようです。SSL検証を無効にする方法nodejsループバックリクエストプラグイン
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));
[NodeJS Request PostはHTTPS Webサイトで動作しません](https://stackoverflow.com/questions/46968937/nodejs-request-post-not-working-for-https-website) –
の重複がありますか?スニペットも同じです! –