我試圖在簡單的節點紅色流中調用RESTful服務(在我的域外)。錯誤:無法驗證節點紅色中的第一個證書
用於調用服務的功能:
var data = {};
data[「someparameter」] = 「somevalue」;
msg.method = "POST";
msg.headers = { "Content-Type": "application/json" };
msg.payload = JSON.stringify(data);
msg.url = "https://myserviceip/myendpoint/mymethod」;
return msg;
儘管如此我得到以下錯誤:
"Error: unable to verify the first certificate : https://myserviceip/myendpoint/mymethod"
設置MSG .rejectUnauthorized在標題爲false時不起作用。
msg.rejectUnauthorized = false; // to avoid the error but it does not work
這裏需要更多的信息,我假設函數節點正在饋入一個http請求節點? – hardillb
謝謝@hardill,根據要求添加流量 – Future2020