Azure Table 服务 REST API: JSON 格式不受支持

Azure Table Service REST API: JSON format is not supported

我正在尝试使用 REST API 和 C++ 从 Azure Table 存储请求一行,但总是出现以下错误:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
  <cod_e>JsonFormatNotSupported</cod_e>
  <message xml:lang="en-US">JSON format is not supported.
RequestId:0ccb3b9b-0002-0029-3389-0d2fa1000000
Time:2016-09-13T06:39:13.3155742Z</message>
</error>

这是我的要求:

GET https://<myaccount>.table.core.windows.net/<mytable>(PartitionKey='<mypartition>',RowKey='<myrow>')?<sharedsignature>

这是我如何填写请求 headers,从 https://msdn.microsoft.com/en-us/library/dd179428.aspx:

std::string sharedAccessSignature("<sharedsignature>");
std::string dateTime(GetDateTime());
std::string stringToSign(dateTime + "\n/" + account + "/" + "<mytable>");
std::string request("(PartitionKey='<mypartition>',RowKey='<myrow>')");
stringToSign += request;
std::string signatureString(HMACSHA256(stringToSign, sharedAccessSignature));

headers["Authorization"] = "SharedKeyLite " + account + ":" + signatureString;
headers["DataServiceVersion"] = "3.0;NetFx";
headers["MaxDataServiceVersion"] = "3.0;NetFx";
headers["x-ms-version"] = "2015-12-11";
headers["x-ms-date"] = dateTime;
headers["Accept"] = "application/json;odata=verbose";
headers["Accept-Charset"] = "UTF-8";

table存在且不为空。
有什么问题请指教?

更新 1
从请求中删除 sharedsignature,即 GET https://<myaccount>.table.core.windows.net/<mytable>(PartitionKey='<mypartition>',RowKey='<myrow>') 会导致相同的结果。
从请求中删除 Authorization header 也会导致相同的结果。

更新 2
https://<myaccount>.table.core.windows.net/<mytable>(PartitionKey='<mypartition>',RowKey='<myrow>')?<sharedsignature> 放入浏览器会产生有效的响应,但采用 Atom 格式。

<?xml version="1.0" encoding="utf-8"?>
<entry 
  xml:base="https://<myaccount>.table.core.windows.net/" 
  xmlns="http://www.w3.org/2005/Atom" 
  xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" 
  xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" 
  m:etag="W/&quot;datetime'2016-09-13T05%3A29%3A51.211538Z'&quot;">
  <id>https://<myaccount>.table.core.windows.net/<mytable> (PartitionKey='<mypartition>',RowKey='<myrow>')</id>
  <category term="<myaccount>.<mytable>" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
  <link rel="edit" title="<mytable>" href="<mytable> (PartitionKey='<mypartition>',RowKey='<myrow>')" />
  <title />
  <updated>2016-09-13T11:25:19Z</updated>
  <author><name /></author>
  <content type="application/xml">
    <m:properties>
      <d:PartitionKey><mypartition></d:PartitionKey>
      <d:RowKey><myrow></d:RowKey>
      <d:Timestamp m:type="Edm.DateTime">2016-09-13T05:29:51.211538Z</d:Timestamp>
      <d:Score m:type="Edm.Int32">1050</d:Score>
    </m:properties>
  </content>
</entry>

更新 3
调查使用curl的情况我发现在请求headers中添加Accept: application/json;odata=fullmetadata会导致上面的错误。 headers 中的默认 Accept */* 生成有效的 Atom 响应。

终于明白了!
问题出在我的共享签名中。
在查看它时,我发现了 sv=2012-02-12 部分,并假设它表示 API 版本。该版本,before JSON 支持被引入!我创建了一个新的共享签名,最后使用以下 curl 命令获得了 JSON。
curl -v -H "Accept: application/json;odata=nometadata" -H "x-ms-version: 2015-12-11" "https://<myaccount>.table.core.windows.net/<mytable>(PartitionKey='<mypartition>',RowKey='<myrow>')?<mysharedsignature>"

所以,对于以后遇到同样问题的各位:请先检查自己的签名!