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

Pesquisar
Categorias
Leia Mais
Money
How Much Should I Spend on an Engagement Ring?
How Much Should I Spend on an Engagement Ring? When it comes to buying an engagement ring, one...
Por Leonard Pokrovski 2025-09-23 19:49:00 0 4K
Life Issues
The Sound of Music (1965)
A young novice is sent by her convent in 1930s Austria to become a governess to the seven...
Por Leonard Pokrovski 2023-06-27 18:25:07 0 29K
Спорт
Ford против Ferrari. Ford v Ferrari. (2019)
В начале 1960-х Генри Форд II принимает решение улучшить имидж компании и сменить курс на...
Por Nikolai Pokryshkin 2023-04-13 22:20:33 0 44K
Business
How Can I Motivate My Team Without Relying Solely on Financial Incentives?
In today’s dynamic work environment, leaders are increasingly seeking ways to motivate...
Por Dacey Rankins 2025-05-20 14:42:23 0 10K
Humanities
ETHNO-ART AS AN ACTUAL DIRECTION IN THE MODERN HUMANITIES
According to the concept common in the postmodern theory of art, the future is not in national...
Por FWhoop Xelqua 2022-12-03 17:18:43 0 21K

BigMoney.VIP Powered by Hosting Pokrov