Python Microsoft Store API

0
14K

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
Business
Do I Need a Co-founder?
One of the first decisions many entrepreneurs face when starting a business is whether to go it...
By Dacey Rankins 2025-04-30 12:57:09 0 12K
Collecting
The Timeless Appeal of Collecting: A Passion for Recreation
In the vast tapestry of human leisure activities, few pursuits hold the same allure and...
By Dacey Rankins 2024-05-09 18:31:08 0 16K
Природа и наука
Король Лев. The Lion King. (1994)
У величественного Короля-Льва Муфасы рождается наследник по имени Симба. Уже в детстве...
By Nikolai Pokryshkin 2022-11-27 22:00:17 0 40K
Science Fiction and Fantasy
The Terminator. (1984)
A human soldier is sent from 2029 to 1984 to stop an almost indestructible cyborg killing...
By Leonard Pokrovski 2023-04-28 19:18:14 0 29K
Marketing and Advertising
How Is PR Measured? What KPIs Matter Most in Public Relations
Introduction: The Shift Toward Data-Driven PR Public relations used to be considered more art...
By Dacey Rankins 2025-10-27 17:06:34 0 3K

BigMoney.VIP Powered by Hosting Pokrov