Python Microsoft Store API

0
9K

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
Literature
The Power of Literature: Exploring the Depths of Human Experience
Literature is one of humanity's most cherished and enduring forms of expression. It encompasses...
By Dacey Rankins 2024-12-13 14:28:38 0 5K
News and Media
News and Media: Navigating a Changing Landscape
The news and media industry has undergone a dramatic transformation in the digital age. From the...
By Dacey Rankins 2024-10-16 16:08:27 0 13K
Жизненные вопросы
Земляничная поляна. Wild Strawberries. (1957)
78-летний профессор из Стокгольма вспоминает и пересматривает разочарования своей долгой жизни....
By Nikolai Pokryshkin 2023-03-26 13:25:00 0 22K
Footbag
Footbag: The Artistry and Athleticism of Hacky Sack
Footbag: The Artistry and Athleticism of Hacky Sack In the realm of alternative sports that...
By Leonard Pokrovski 2024-06-25 16:54:44 0 15K
Социальные проблемы
Доктор Стрейнджлав, или Как я научился не волноваться и полюбил атомную бомбу. Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb. (1964)
Одержимый мыслью, что коммунисты намереваются украсть у американцев их «бесценные телесные...
By Nikolai Pokryshkin 2022-12-24 11:18:45 0 20K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov