gpt4 book ai didi

javascript - Node.js 客户端的 Adob​​e Analytics Segments API 身份验证问题

转载 作者:行者123 更新时间:2023-12-01 03:20:05 25 4
gpt4 key购买 nike

我在尝试通过 node.js 客户端使用 Segments API 时遇到授权问题。停止拐弯抹 Angular ,下面是通过 x-wsse header 管理 POST 请求和授权的部分:

var now = new Date();
var options = {
method: "POST",
hostname: "api3.omniture.com",
path: "/admin/1.4/rest/?method=Segments.Get",
json: true,
headers: {
"Content-Type": "application/json",
"Content-Length" : Buffer.byteLength(JSON.stringify(body)),
"x-wsse": 'UsernameToken Username="[username]:[company]", PasswordDigest="xxxxxxxxxxxxxxxxxxxxxxxxxx==", Nonce="yyyyyyyyyyyyyyyyyyyyyyyyyy", Created="'+now+'"'
}
};

如您所见,我正在尝试复制 API Explorer 生成的 x-wsse,通过 Date() JS 类动态指定 Created 时间戳。 Node 客户端向我报告此错误:
{"error":"错误请求","error_description":"无法验证身份验证。","error_uri":null}

我认为 x-wsse PasswordDigest 和 Nonce 值也会根据每个请求不断变化,而在这里我将它们设为静态。如果这是问题的原因,如何在 x-wsse header 中动态插入这些参数?

非常感谢。

最佳答案

是的,PasswordDigestCreated 值也是动态生成的,因为它们基于您生成的值。我不太了解 Node.js,无法向您展示 Node.js 示例,但这里有一个 php 示例,其中包含一些注释:

$username='user:company';
$secret='12345'; // api shared secret key for the user
// The nonce should be a universally unique value. I use a timestamp based value and prefix with a namespace to help make it unique, because AA request digests have to be unique across everybody everywhere ever
$nonce = 'FOO_'.dechex(time());
// datetime stamp in ISO 8601 date format (e.g. '2004-02-12T15:19:21+00:00')
$nonce_ts = date('c');
// Adobe expects the PasswordDigest to be a concatenated string value of the nonce, datetimestamp, and api key. They expect it to be hashed (sha1) and then base64 encoded
$digest = base64_encode(sha1($nonce.$nonce_ts.$secret));
$server = "https://api.omniture.com";
$path = "/admin/1.4/rest/";
$rc=new SimpleRestClient();
$rc->setOption(CURLOPT_HTTPHEADER, array("X-WSSE: UsernameToken Username=\"$username\", PasswordDigest=\"$digest\", Nonce=\"$nonce\", Created=\"$nonce_ts\""));

关于javascript - Node.js 客户端的 Adob​​e Analytics Segments API 身份验证问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45284293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com