我正在使用node.js request.js到达api。我收到这个错误
[错误:UNABLE_TO_VERIFY_LEAF_SIGNATURE]
我所有的凭据都是准确有效的,并且服务器还不错。我对邮递员提出了同样的要求。
request({ "url": domain+"/api/orders/originator/"+id, "method": "GET", "headers":{ "X-API-VERSION": 1, "X-API-KEY": key }, }, function(err, response, body){ console.log(err); console.log(response); console.log(body); });
此代码仅在可执行脚本ex中运行。node ./run_file.js,那是为什么?是否需要在服务器上运行?
node ./run_file.js
注意 :以下情况很危险,并且将允许在客户端和服务器之间截取和修改API内容。
这也起作用
process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = '0';