0
我正在寫一個node.js應用程序,它使ping的獲取請求;但即使是我試圖把它放在任何地方,仍然不斷收到「用戶證書缺失錯誤」。請參閱下面的代碼。Pingdom憑據即使如果提供
function get_checks() {
var options = {
"hostname" : "api.pingdom.com",
"path" : "/api/2.0/checks?"+"[email protected]"+":"+"password",
"method" : "GET",
"headers" : {
"userpwd" : "[email protected]"+":"+"password",
"App-Key" : "key"
},
"userpwd" : "[email protected]"+":"+"password"
};
var req = https.request(options, function(response){
response.on('data', function(response_data) {
console.log("Response: " + response_data);
});
});
req.end();
}
好解決,看着進入pingdom包裝的源代碼 – Max 2012-04-26 19:58:55
https://github.com/ryanbreen/node-pingdom/blob/master/lib/pingdom.js – Max 2012-04-26 19:59:01
老實說,我不知道爲什麼pingdom只提供一個樣本httpheader,這將是非常容易提供和閱讀。 – Max 2012-04-26 19:59:51