Python Microsoft Store API

0
13K

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

Căutare
Categorii
Citeste mai mult
Television
FOX 5, Live TV. Atlanta USA
Stream local news and weather, traffic and sports live from FOX 5 Atlanta. WAGA-TV, channel 5...
By Nikolai Pokryshkin 2022-09-16 08:21:12 0 31K
Business
How Do I Develop a Business Development Strategy? (Step-by-Step Guide)
A business development strategy is the master plan a company uses to identify new growth...
By Dacey Rankins 2025-11-18 15:40:55 0 2K
Major Companies
Major Companies: Pillars of the Global Economy
In the interconnected world of the 21st century, certain companies have emerged as titans,...
By Dacey Rankins 2024-11-15 15:00:01 0 14K
Mental Health
Dyslexia: Pathophysiology
For most people who are right-hand dominant, the left hemisphere of their brain is more...
By Kelsey Rodriguez 2023-06-26 17:18:55 0 11K
Business
What is an MSc or PhD in Management Science?
Understanding the Differences Between Professional and Research-Focused Degrees Management...
By Dacey Rankins 2025-07-05 18:43:16 0 5K

BigMoney.VIP Powered by Hosting Pokrov