1 回答
TA贡献1786条经验 获得超13个赞
您收到此错误的原因是您没有将帐户密钥转换为缓冲区。请更改以下代码行:
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);
我刚刚尝试了上面的代码,并且能够在我的表中列出实体。
添加回答
举报