3

我正在尝试使用 node-soap 连接到 bing ads soap api。我已按照 bing文档中的建议创建了请求。但是每次我尝试连接响应时都会显示无效凭据(错误代码 - 105)消息 - 身份验证失败。提供的凭据无效或帐户处于非活动状态。

我能够使用 bing 提供的示例 C# 代码对 API 进行身份验证。因此,很明显凭据/令牌运行良好。

有没有办法用我的方法或我的节点代码来识别问题。

soap.createClient(url, function (err, client) {
    if (err) {
        console.log("err", err);
    } else {
        client.addSoapHeader({
            'AuthenticationToken': '<AuthenticationToken>',
            'DeveloperToken': '<DeveloperToken>',
            'CustomerId': '<CustomerId>',
            'CustomerAccountId': '<CustomerAccountId>',
        });        
        client.SubmitGenerateReport(args, function (err, result) {
            if (err) {
                console.log("err", err.body);
            } else {
                console.log(result);
            }
        });
    }
});

PS:必应文档很烂。万岁 Stackoverflow!

4

1 回答 1

4

您需要在标题中的每个键前面加上前缀tns,例如:tns:AuthenticationToken

于 2017-12-17T03:38:25.570 回答