1

我正在编写一个向 pingdom 发出 get 请求的 node.js 应用程序;但即使我试图把它放在任何地方,也会不断收到“用户凭据丢失错误”。请看下面的代码。

function get_checks() {
    var options = {
        "hostname" : "api.pingdom.com",
        "path" : "/api/2.0/checks?"+"userpwd=user@example.com"+":"+"password",
        "method" : "GET",
        "headers" : {
            "userpwd" : "user@example.com"+":"+"password",
            "App-Key" : "key"
        },
        "userpwd" : "user@example.com"+":"+"password"
    };

    var req = https.request(options, function(response){
        response.on('data', function(response_data) {
            console.log("Response: " + response_data);
        });
    });

    req.end();
}
4

1 回答 1

1

只是自己回答这个问题,这样它就不会作为一个悬而未决的问题挂起......

pingdom 使用 http 基本身份验证,因此它必须在身份验证标头中

于 2012-08-03T00:07:32.347 回答