尝试获取Azure Rate Card时出错

时间:2018-04-19 14:29:06

标签: azure microsoft-commerce-server

我正在尝试为我的Azure订阅下载价目表,因为今天早上请求以HTTP 400结尾。这是错误

<?xml version="1.0" encoding="utf-8"?>
<Error>
    <Code>InvalidAuthenticationInfo</Code>
    <Message>Authentication information is not given in the correct format. Check the value of Authorization header.
RequestId:757bb26d-801e-005b-45e9-d7361f000000
Time:2018-04-19T14:19:26.9289239Z</Message>
</Error>

我做的Api电话是。在标题中,我还传递了访问令牌。

https://management.azure.com/subscriptions/<subscription id>/providers/Microsoft.Commerce/RateCard?api-version=2015-06-01-preview&$filter=OfferDurableId+eq+%27MS-AZR-0003P%27+and+Currency+eq+%27USD%27+and+Locale+eq+%27en-US%27+and+RegionInfo+eq+%27US%27

相同的访问令牌似乎可以用于其他目的。但突然之间,似乎价目表API失败了。

微软方面有任何改变吗?

2 个答案:

答案 0 :(得分:1)

使用授权对网址进行GET调用时

https://management.azure.com/subscriptions/<subscription id>/providers/Microsoft.Commerce/RateCard?api-version=2015-06-01-preview&$filter=OfferDurableId+eq+%27MS-AZR-0003P%27+and+Currency+eq+%27USD%27+and+Locale+eq+%27en-US%27+and+RegionInfo+eq+%27US%27

它将作为状态代码响应400。但是它也会将302作为状态给出一个这样的Location头:

Location : https://ratecard.blob.core.windows.net/ratecards/asdfghjk-db2f-4847-b3a0-d556072000f6%5CMS-AZR-0003P%5CUSD%5Cen-US%5CFalse/2015-06-01-preview/1bc08f92-830c-43c7-b8b4-6bc1d8875d0e.json?sv=2016-05-31&sr=b&sig=asdfghjkc6EbDNOUVEDc4M69YqHoH8ERQy5BJWKfSEU%3D&se=2018-04-24T07%3A00%3A19Z&sp=r&rsct=application%2Fjson 

现在对没有授权标题的位置进行GET调用(因为它已经在之前的调用中进行了身份验证),现在您可以获得价目表。

答案 1 :(得分:0)

同样的问题,似乎MSFT正在努力:Authorization format fail #7423