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

Zoeken
Categorieën
Read More
Jewelry
The most expensive jewelry in the world
Beautiful, alluring, mystical, mysterious... precious stones have always had a special power over...
By FWhoop Xelqua 2022-11-09 17:34:25 0 22K
Business
What Are Ethical Issues in Management Science?
Concerns Include Bias, Fairness, Data Privacy, Transparency, Accountability, and Stakeholder...
By Dacey Rankins 2025-07-05 18:41:02 0 8K
Financial Services
The structure of costs in the long run
    Key points A production technology is the...
By Mark Lorenzo 2023-02-22 16:50:59 0 14K
Personal Finance
What Is the Difference Between Subsidized and Unsubsidized Loans?
What Is the Difference Between Subsidized and Unsubsidized Loans? Paying for education often...
By Leonard Pokrovski 2025-12-18 20:07:36 0 5K
Flowers
The Best Flowers to Shop For: A Guide to Choosing the Perfect Blooms
Whether you’re looking to brighten your home, celebrate a special occasion, or simply enjoy...
By Dacey Rankins 2024-11-29 15:05:28 0 9K

BigMoney.VIP Powered by Hosting Pokrov