gpt4 book ai didi

javascript - 如何为 Azure 表存储 REST 请求生成 SharedKeyLite

转载 作者:行者123 更新时间:2023-12-02 07:25:06 25 4
gpt4 key购买 nike

我尝试使用 Postman 调用 Azure 表存储,但不断收到:

Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.

我在 Postman 中用于预调用脚本的代码如下:

var storageAccount = "**mystorageaccount**";
var accountKey = "**mystoragekey**";

var date = new Date();
var UTCstring = date.toUTCString();

var data = date + "\n" + "/**mystorageaccount**/**mytable**"

var encodedData = unescape(encodeURIComponent(data));

var hash = CryptoJS.HmacSHA256(encodedData, accountKey);
var signature = hash.toString(CryptoJS.enc.Base64);

var auth = "SharedKeyLite " + storageAccount + ":" + signature;

postman.setEnvironmentVariable("auth", auth);
postman.setEnvironmentVariable("date", UTCstring);

Postman 中的 header 如下:

Authorization : {{auth}}
date : {{date}}
version : 2015-12-11

我猜测问题可能出在数据变量上,但没有想法了。

最佳答案

您收到此错误的原因是您没有将帐户 key 转换为缓冲区。请更改以下代码行:

var hash = CryptoJS.HmacSHA256(encodedData, accountKey);

var hash = CryptoJS.HmacSHA256(encodedData, Buffer.from(accountKey, 'base64'));

并且您不应该收到错误。

<小时/>

更新

我也遇到同样的错误。请尝试以下代码:

var storageAccount = "**mystorageaccount**";
var accountKey = "**mystoragekey**";

var date = new Date();
var UTCstring = date.toUTCString();

var data = UTCstring + "\n" + "/**mystorageaccount**/**mytable**"

var encodedData = unescape(encodeURIComponent(data));

var hash = CryptoJS.HmacSHA256(encodedData, CryptoJS.enc.Base64.parse(accountKey));
var signature = hash.toString(CryptoJS.enc.Base64);

var auth = "SharedKeyLite " + storageAccount + ":" + signature;

postman.setEnvironmentVariable("auth", auth);
postman.setEnvironmentVariable("date", UTCstring);

我刚刚尝试了上面的代码,并且能够列出表中的实体。

关于javascript - 如何为 Azure 表存储 REST 请求生成 SharedKeyLite,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56512864/

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