Python Microsoft Store API

0
7K

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

Zoeken
Categorieën
Read More
Arts, Culture and Entertainment
Crescendo (2020)
An outwardly ambitious and charismatic opera singer fights to maintain her stature while silently...
By Leonard Pokrovski 2022-10-02 20:28:40 0 21K
Социальные проблемы
Неистовый. Unhinged. (2020)
Мать-одиночка Рейчел находится в процессе развода, и этот день у неё не задался. Она проспала и,...
By Nikolai Pokryshkin 2022-10-16 17:51:15 0 20K
Winter Sports
The Thrill of Winter Sports: Embracing the Cold
The Thrill of Winter Sports: Embracing the Cold As winter blankets the world in snow and ice, a...
By Leonard Pokrovski 2024-07-15 00:29:19 0 12K
Business
How Do I Start My Own Business? A Step-by-Step Guide
Starting your own business can be one of the most rewarding decisions of your life. It offers the...
By Dacey Rankins 2025-03-12 14:46:33 0 2K
Business
What Are the Startup Costs and How Can I Finance My Business?
Starting a business is an exciting journey, but it comes with financial challenges that need...
By Dacey Rankins 2025-02-06 15:12:19 0 7K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov