2016-11-08 44 views
0

我曾嘗試通過以下蔚藍APIAzure的休息API AuthorizationFailed錯誤

endpoint = 'https://management.azure.com/subscriptions/{subscription_id}/providers/microsoft.Security/alerts?api-version=2016-03-01' 
headers = {"Authorization": 'Bearer ' + access_token} 
json_output = requests.get(endpoint, headers=headers).json() 

返回以下錯誤消息閱讀提醒,

{u'error ':{u'message':U 「對象ID爲」8447xxxx-xxxx-xxxx-xxxx-49bb99abxxxx「的客戶端'8447xxxx-xxxx-xxxx-xxxx-49bb99abxxxx'沒有權限執行'範圍'/ subscriptions/{subscription_id}'。「,u'code':u'AuthorizationFailed'}}

+0

那麼,你有說的權利?我的意思是代幣持有人。 – 4c74356b41

+0

是的,我使用'acquire_token_with_client_credentials()'獲得了使用ADAL python包的訪問令牌。 –

回答