从node.js调用外部rest api时出现UNABLE_TO_VERIFY_LEAF_SIGNATURE错误

时间:2018-03-30 08:07:15

标签: node.js express

我想从外部休息api获取一些数据。这是一个帖子请求。 以下是我尝试过的代码。

return new Promise(function (resolve) {
    var payload = JSON.stringify({ "data": [ "Requirement_Description": "xxx" }], "services": ["xxxx"], "labels": ["label_1"] });
    var options = {
        'url': 'https://myHost/xxx/api/model/predict',
        'method': 'POST',
        'body': payload,
        'json': true,
        'proxy': 'myProxy',
        'timeout': 10000,
        'followRedirect': true,
        'maxRedirects': 10
    };
    request.post(options, function (error, response, body) {
        if (error)
            resolve(error.message)
        else
            resolve(body)
    })
});

所有时间,我收到错误 UNABLE_TO_VERIFY_LEAF_SIGNATURE 。我已经看到了类似于我的问题,但在我的情况下,它是一个帖子请求,并且还会在发布操作时将一些原始数据传递给正文。

0 个答案:

没有答案