Python Microsoft Store API

0
15KB

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

Suche
Kategorien
Mehr lesen
Business
What Is the Company's Management Style?
A company’s management style plays a crucial role in shaping the workplace environment,...
Von Dacey Rankins 2025-06-11 13:44:18 0 7KB
Finance
Where Is the Best Place to Exchange Currency? (Banks vs Kiosks vs Airports)
Where Is the Best Place to Exchange Currency? (Banks vs Kiosks vs Airports) Whether you’re...
Von Leonard Pokrovski 2025-10-17 08:20:27 0 8KB
Decision Making and Problem Solving
Why do smart people make mistakes?
Why Do Smart People Make Mistakes? The Hidden Limits of Intelligence in Decision-Making...
Von Michael Pokrovski 2026-06-30 19:05:08 0 144
Marketing and Advertising
Is Google AdWords the Same as Google Ads?
Many people still use the term Google AdWords, even though Google officially rebranded the...
Von Dacey Rankins 2026-01-09 20:04:01 0 6KB
Social Issues
The Godfather. (1972)
The Godfather "Don" Vito Corleone is the head of the Corleone mafia family in New York. He is at...
Von Leonard Pokrovski 2022-10-31 19:32:39 0 32KB

BigMoney.VIP Powered by Hosting Pokrov