Python Microsoft Store API

0
14K

The following example demonstrates how to obtain an Azure AD access token that you can use to call methods in the Microsoft Store submission API. After you obtain a token, you have 60 minutes to use this token in calls to the Microsoft Store submission API before the token expires. After the token expires, you can generate a new token..

import http.client, json tenantId = "" # Your tenant ID clientId = "" # Your client ID clientSecret = "" # Your client secret tokenEndpoint = "https://login.microsoftonline.com/{0}/oauth2/token" tokenResource = "https://manage.devcenter.microsoft.com" tokenRequestBody = "grant_type=client_credentials&client_id={0}&client_secret={1}&resource={2}".format(clientId, clientSecret, tokenResource) headers = {"Content-Type": "application/x-www-form-urlencoded; charset=utf-8"} tokenConnection = http.client.HTTPSConnection("login.microsoftonline.com") tokenConnection.request("POST", "/{0}/oauth2/token".format(tenantId), tokenRequestBody, headers=headers) tokenResponse = tokenConnection.getresponse() print(tokenResponse.status) tokenJson = json.loads(tokenResponse.read().decode()) print(tokenJson["access_token"]) tokenConnection.close()

Pesquisar
Categorias
Leia Mais
Personal Finance
Should I choose federal or private student loans?
Should I choose federal or private student loans? Short answer: Start with federal loans. For...
Por Leonard Pokrovski 2025-12-16 21:10:40 0 2K
Financial Services
The structure of costs in the long run
Key points A production technology is the specific combination of labor,...
Por Mark Lorenzo 2023-07-14 18:27:19 0 14K
Business
Which Metrics Matter Most at Growth Stages?
As a business grows, the metrics that matter most evolve. In the earliest stages, survival and...
Por Dacey Rankins 2025-09-05 15:45:51 0 5K
Life Issues
Top Gun: Maverick. (2022)
After thirty years, Maverick is still pushing the envelope as a top naval aviator, but must...
Por Leonard Pokrovski 2023-01-15 18:16:42 0 21K
Социальные проблемы
Новые времена. Modern Times. (1936)
«Новые времена» - это эмоциональный, выдержанный в комическом ключе, отклик на...
Por Nikolai Pokryshkin 2022-12-06 22:41:12 0 27K

BigMoney.VIP Powered by Hosting Pokrov