How to generate SharedKeyLite for Azure Table Storage REST request(如何为 Azure 表存储 REST 请求生成 SharedKeyLite)
问题描述
我正在尝试使用 Postman 调用 Azure 表存储,但不断收到:
I'm trying to call Azure Table Storage using Postman but keep getting :
服务器未能验证请求.确保值包括签名在内的授权标头格式正确.
Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
我在 Postman 中用于 pre-call 脚本的代码如下:
The code I am using for the pre-call script in Postman is as follows:
var storageAccount = "**mystorageaccount**";
var accountKey = "**mystoragekey**";
var date = new Date();
var UTCstring = date.toUTCString();
var data = date + "
" + "/**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中的headers如下:
The headers in Postman are as follows:
Authorization : {{auth}}
date : {{date}}
version : 2015-12-11
我猜这个问题可能出在数据变量上,但没有什么想法.
I am guessing the issue may be with the data variable, but running out of ideas.
推荐答案
您收到此错误的原因是您没有将帐户密钥转换为缓冲区.请更改以下代码行:
The reason you're getting this error is because you're not converting your account key to a buffer. Please change the following line of code:
var hash = CryptoJS.HmacSHA256(encodedData, accountKey);
到
var hash = CryptoJS.HmacSHA256(encodedData, Buffer.from(accountKey, 'base64'));
你不应该得到错误.
更新
我也遇到了同样的错误.请尝试以下代码:
I also got the same error. Please try the following code:
var storageAccount = "**mystorageaccount**";
var accountKey = "**mystoragekey**";
var date = new Date();
var UTCstring = date.toUTCString();
var data = UTCstring + "
" + "/**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);
我刚刚尝试了上面的代码,并且能够在我的表中列出实体.
I just tried the code above and was able to list entities in my table.
这篇关于如何为 Azure 表存储 REST 请求生成 SharedKeyLite的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何为 Azure 表存储 REST 请求生成 SharedKeyLite


- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01