Azure存储表REST Api调用-无效的标题

时间:2018-06-28 08:55:31

标签: java rest azure azure-storage azure-table-storage

我正在尝试调用REST API以查看Azure存储表的内容。 希望我已经正确地形成了Authorization标头值,并且得到了以下错误。请更正我以下请求中缺少的内容(来自REST Client应用)。

{
  "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 个答案:

答案 0 :(得分:1)

要修复的四点:

    如果要获取内容为application/json;odata=nometadata,则
  1. 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'。用两位数表示Day。
  3. canonicalizedResource应该像您的代码注释一样为storageAccountName\tableName
  4. 要生成SecretKeySpec,SecretKeySpec secretKey = new SecretKeySpec(Base64.decode(secret), "HmacSHA256");因为密钥被编码为Base64。