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

Search
Categories
Read More
Marketing and Advertising
What Is the Best Time to Run Radio Ads?
Choosing the right time to run your radio ads is just as important as writing a great script or...
By Dacey Rankins 2026-02-06 19:34:50 0 4K
Human Resources
How Does Outsourcing Work?
Outsourcing is a widely used business strategy, but to truly understand its value, it’s...
By Dacey Rankins 2026-04-02 18:51:12 0 5K
Board Games
Board games of the ancient world
When it comes to board games today, the average person first remembers dominoes and cards (less...
By Michael Pokrovski 2024-04-02 19:06:35 0 23K
Productivity
How does minimalism affect clothing choices?
How Does Minimalism Affect Clothing Choices? Minimalism, when applied to clothing, is not simply...
By Michael Pokrovski 2026-04-18 06:00:32 0 8K
Business
How Do I Build and Maintain Long-Term Relationships with Partners and Clients?
Building and maintaining long-term relationships with partners and clients is the foundation of...
By Dacey Rankins 2025-11-17 18:50:31 0 15K

BigMoney.VIP Powered by Hosting Pokrov