【发布时间】:2021-08-23 18:37:46
【问题描述】:
我使用 python 做到了这一点。但无法生成有助于获取客户数据的代币。 获取访问令牌的代码
url = "https://login.microsoftonline.com/"+tanat_id+"/oauth2/token"
headers = {
"Accept": "application/json",
"return-client-request-id": "true",
"Content-Type": "application/x-www-form-urlencoded; charset=utf-8",
"Host": "login.microsoftonline.com",
"Content-Length": "194",
"Expect": "100-continue"
}
data = {
'client_id': client_id,
'resource': 'https://api.partner.microsoft.com',
'client_secret': client_secret,
'grant_type': 'client_credentials',
}
res = requests.post(url, headers=headers, data=data)
access_token = json.loads(res.text)["access_token"]
生成令牌的代码
url = "https://api.partnercenter.microsoft.com/generatetoken"
headers = {
"Authorization": "Bearer " + str(access_token),
"Accept": "application/json",
"content-type": "application/json;charset=UTF-8"
}
data = {
'grant_type': 'authorization_code',
}
res = requests.post(url, headers=headers, data={"grant_type":"jwt_token"})
但是
>>> res.text
'{"error":"invalid_grant","error_description":"Invalid token: tokenValidationResult == null - True, tokenValidationResult.Principal == null - True, tokenValidationResult.Principal.Identity == null- True, tokenValidationResult.Principal.Identity.IsAuthenticated - "}'
如果我尝试获取客户列表,则使用 access_token 会返回 401 错误。
#Customer List
url = "https://api.partnercenter.microsoft.com/v1/customers?size=40"
headers = {
"Authorization": "Bearer " + str(access_token),
"Accept": "application/json",
}
res = requests.get(url, headers=headers)
res
<Response [401]>
res.text
""
【问题讨论】: