Python Microsoft Store API

0
15K

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()

Buscar
Categorías
Read More
Institutions
TOP 15 Research Universities
The world was built as the product of intensive research. Most of the world's stunning...
By FWhoop Xelqua 2022-12-11 15:49:25 0 21K
Personal Finance
What are the best saving apps? (Apps like Chime, Mint, YNAB, and more)
What are the best saving apps? (Apps like Chime, Mint, YNAB, and more) Saving money feels easier...
By Leonard Pokrovski 2025-12-08 20:08:16 0 6K
Business
Why Are Communication Skills Important?
Introduction Communication skills are among the most fundamental competencies that influence...
By Dacey Rankins 2025-11-20 15:10:11 0 3K
Business
What Are the Biggest Challenges I Would Face in This Role?
Asking about potential challenges before accepting a role gives you a realistic preview of the...
By Dacey Rankins 2025-08-09 18:32:34 0 9K
Social Issues
Mr. Smith Goes to Washington. (1939)
A naive youth leader is appointed to fill a vacancy in the U.S. Senate. His idealistic plans...
By Leonard Pokrovski 2023-04-05 14:54:34 0 31K

BigMoney.VIP Powered by Hosting Pokrov