我知道这个话题有很多主题。 但我无法找到解决问题的方法。
使用节点(0.10。*)和#34; restler"作为REST模块。
其余API使用 HTTPS
一个api服务工作100%,但另一个工作1/5休息电话,我得到ECONNRESET。我知道错误代表什么。
但是,当我使用Postman进行休息时,他们100%工作:/
示例代码:
rest.get(config.endPoint + "/focus/api?method=findsc&cid=" + collectionId + "&fid=" + textId + "&max=" + limit + "&apikey=" + config.apiKey + "&format=json").on('complete', function(data) {
console.log(data);
callback(true, data.data.items);
});
答案 0 :(得分:0)
我跳过插件并使用var https = require('https');
代替,但我确实必须添加它以使其正常工作。
https.globalAgent.options.secureProtocol = 'SSLv3_method';