gpt4 book ai didi

java - Azure 存储表 REST Api 调用 - 无效 header

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

我正在尝试调用 REST API 来查看 Azure 存储表的内容。希望我已经正确形成了授权 header 值,并且出现了以下错误。请纠正我在以下请求中遗漏的地方(来自 REST 客户端应用程序)。

{
"method": "GET",
"transformRequest": [
null
],
"transformResponse": [
null
],
"url": "https://#####.table.core.windows.net/testDB",
"headers": {
"x-ms-date": "Thu, 28 Jun 2018 08:39:05 GMT",
"x-ms-version": "2018-06-28",
"Accept": "application/json;odata=nometadata",
"Authorization": "SharedKeyLite #####:########"
},
"data": "",
"timeout": {}
}

这是我的回复标题:

{
"x-ms-request-id": "3fc23b14-2002-0037-04bc-0e9e56000000",
"date": "Thu, 28 Jun 2018 08:46:39 GMT",
"server": "Microsoft-HTTPAPI/2.0",
"content-length": "371",
"content-type": "application/xml",
"status": 400
}

和响应正文

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<code>InvalidHeaderValue</code>
<message xml:lang="en-US">The value for one of the HTTP headers is not in the correct format.
RequestId:3fc23b14-2002-0037-04bc-0e9e56000000
Time:2018-06-28T08:46:40.1148690Z</message>
</error>

这里是JAVA代码,我用来生成SignatureString

    private void printHash()
{
// https://mytestaccount.table.core.windows.net/testDB: this is the url form Azure portal displaying next to table
String secret = "I Updated my key here";
// Date for string to sign
Calendar calendar = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss 'GMT'", Locale.US);
sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
String date = sdf.format(calendar.getTime());
// canonicalizedResource, such as "/testaccount1/Tables"
String canonicalizedResource = "/testDB";
String stringToSign = date + "\n" + canonicalizedResource;
System.out.println(stringToSign);
// HMAC-SHA@%^
Mac sha256HMAC = null;
try {
sha256HMAC = Mac.getInstance("HmacSHA256");
SecretKeySpec secretKey = new SecretKeySpec(secret.getBytes(), "HmacSHA256");
sha256HMAC.init(secretKey);
String hash = Base64.encodeToString(sha256HMAC.doFinal(stringToSign.getBytes()), Base64.DEFAULT);
System.out.println(hash);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
} catch (InvalidKeyException e) {
e.printStackTrace();
}
}

最佳答案

需要解决的四点:

  1. 如果您希望获取 application/json;odata=nometadata 形式的内容,则 x-ms-version 不是可选的。 x-ms-version 应显式设置为 2013-08-15 或更高版本(最新为 2018-03-28 )以支持此格式。请参阅Json format in table service .
  2. 日期格式应为 EEE, dd MMM yyyy HH:mm:ss 'GMT'。两位数字表示日。
  3. canonicalizedResource 应该是 storageAccountName\tableName 就像您的代码注释一样。
  4. 要生成 SecretKeySpec,SecretKeySpec SecretKey = new SecretKeySpec(Base64.decode(secret), "HmacSHA256"); 因为 key 被编码为 Base64。

关于java - Azure 存储表 REST Api 调用 - 无效 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51078643/

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