0

我正在尝试为我的 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 Call 是。在标题中,我还传递了访问令牌。

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 似乎失败了。

如果微软方面有任何改变,有什么想法吗?

4

2 回答 2

1

当您使用授权对 url 进行 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 : 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 调用(因为它已经在之前的调用中进行了身份验证),现在您可以获得费率卡。

于 2018-04-24T06:52:25.007 回答
0

同样的问题,似乎 MSFT 正在处理它:授权格式失败 #7423

于 2018-04-24T08:30:00.650 回答