使用node-soap连接Bing Ads API

时间:2017-06-16 13:28:21

标签: node.js soap bing node-soap bing-ads-api

我正在尝试使用node-soap连接到bing ads soap api。我按照b documentation的建议创建了请求。但每次我尝试连接响应时都会声明无效凭据(错误代码 - 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:Bing文档很糟糕。 Hail Stackoverflow!

1 个答案:

答案 0 :(得分:3)

您需要在标题中为=添加前缀,例如:tns