我正在尝试使用 Azure AD 进行身份验证以访问 Azure Insights REST API,以便最终可以访问 Azure Web 应用程序。但是,他们文档中的身份验证示例仅限于 C# 和 PowerShell。我正在尝试做同样的事情,但使用 Python requests 库。这是我到目前为止所拥有的,但我收到了“404 not found”的回复。关于如何使用 Python 请求库对 Insights API 进行身份验证的任何想法?
AUTH = 'https://login.windows.net/%s' % TENANT_ID
RESOURCE = 'https://management.azure.com/'
def auth():
s = requests.Session()
params = {
'grant_type': 'client_credentials',
'client_id': CLIENT_ID,
'client_secret': CLIENT_KEY,
'resource': RESOURCE
}
response = s.post(AUTH, params=params)
print response.url
print response.status_code
print response.reason
auth()
编辑1:
更新的身份验证 URL 修复了它。谢谢你。但是,我仍然想专门使用 Python 请求库来获取 Web 应用程序/资源组。
RESOURCE_VERSION = '2015-01-01'
RESOURCE_URI = 'https://management.azure.com/subscriptions/%s/resourcegroups' % (SUBSCRIPTION_ID)
s = requests.Session()
payload = {
'grant_type': 'client_credentials',
'client_id': CLIENT_ID,
'client_secret': CLIENT_KEY,
'resource': RESOURCE
}
response = s.post(AUTHENTICATION_CONTEXT, data=payload).json()
access_token = response['access_token']
s.headers = {
'Authorization': 'Bearer %s' % access_token,
'Content-Type': 'application/json'
}
s.params = {
'api-version': RESOURCE_VERSION
}
response2 = s.get(RESOURCE_URI).json()
print response2
这给了我以下输出
{u'error': {u'message': u"The client 'CLIENT_ID' with object id 'OBJECT_ID' does not have authorization to perform action 'Microsoft.Resources/subscriptions/resourcegroups/read' over scope '/subscriptions/SUBSCRIPTION_ID'.", u'code': u'AuthorizationFailed'}}
根据响应,这似乎是我的 Azure 应用程序中的权限问题,但我已经为该应用程序提供了我认为它必须拥有的所有权限,它仍然给我同样的错误消息。