使用 nodejs 连接到 Bing API 时,HTTPS Get 给出连接被拒绝的错误

HTTPS Get gives connection refused error while connecting to Bing API using nodejs

我能够使用 Chrome 扩展程序 - Postman 连接到 Bing API 端点。
我是 NodeJS 和 AWS Lambda 的新手。使用 nodejs 6.9.0

从 AWS Lambda 函数连接时看到以下错误
Error: connect ECONNREFUSED 127.0.0.1:443
at Object.exports._errnoException (util.js:1018:11)
at exports._exceptionWithHostPort (util.js:1041:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1086:14)

Code:

exports.handler = (event, context, callback) => {
var headers = {
'Ocp-Apim-Subscription-Key': '******************',
'Content-Type': 'application/json',
};
var options = {
url: 'https://api.cognitive.microsoft.com/bing/v5.0/search?                
&q=hello',
method: 'GET',
headers: headers,
};
const https = require("https");
https.get(options);
};

感谢您的帮助

您可能需要并使用包 node-bing-api 来搜索 Bing Api。

var Bing = require('node-bing-api')({ accKey: "your-account-key" });

Bing.web("hello", function(error, res, body){
   console.log(body);
 });