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
Mapas
Armenia on the Babylonian Map
What do we know about the oldest maps of the world that have survived to this day. There are only...
By FWhoop Xelqua 2022-12-14 13:50:09 0 23K
Cultures and Groups
Understanding Cultures: Diversity, Identity, and the Tapestry of Humanity
Culture is the essence of what makes a group of people unique. It encompasses the shared beliefs,...
By Dacey Rankins 2024-11-07 16:38:01 0 15K
Consumer Goods and Services
Consumer goods
Consumer Goods – Definition and 4 TypesConsumer goods are final goods that households or...
By FWhoop Xelqua 2023-07-23 18:00:54 0 36K
Business
How Can I Finance My Business Without External Funding?
Financing a business without external funding is a viable option for many entrepreneurs who...
By Dacey Rankins 2025-03-31 15:41:06 0 18K
Productivity
How do I balance work and personal life?
How Do I Balance Work and Personal Life? Balancing work and personal life is not about splitting...
By Michael Pokrovski 2026-03-04 21:42:04 0 13K

BigMoney.VIP Powered by Hosting Pokrov