Python Microsoft Store API

0
15K

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

Search
Categories
Read More
Business
What Is Office Administration?
Office administration is the process of managing and coordinating the day-to-day operations of an...
By Dacey Rankins 2026-04-19 19:31:07 0 1K
Mental Health
Autism Spectrum: Possible Causes
It had mostly long been presumed that there is a common cause at the genetic, cognitive, and...
By Kelsey Rodriguez 2023-02-20 15:15:52 0 12K
Жизненные вопросы
Останься со мной. Stand by Me. (1986)
Действие фильма переносит зрителя в 50-е годы. Лето подходит к концу, но сезон развлечений...
By Nikolai Pokryshkin 2023-05-08 16:23:14 0 37K
Public Health and Safety
Public health management is the process of managing a complex system
Public health management is the process of managing a complex system Public health is the...
By Leonard Pokrovski 2024-04-19 00:45:25 0 19K
Sport
Touching the Void (2003)
The true story of two climbers and their perilous journey up the west face of Siula Grande in the...
By Leonard Pokrovski 2023-07-19 22:32:38 0 23K

BigMoney.VIP Powered by Hosting Pokrov