Python Microsoft Store API

0
10K

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
Life Issues
Book Club The Next Chapter. (2023)
The highly anticipated sequel follows our four best friends as they take their book club to Italy...
By Leonard Pokrovski 2023-06-14 20:35:48 0 44K
Social Issues
The Intern. (2015)
Seventy-year-old widower Ben Whittaker has discovered that retirement isn't all it's cracked up...
By Leonard Pokrovski 2023-05-25 18:58:50 0 21K
Programming
Python While Loops
While loops can be ran as long as the condition is True. Otherwise, it'll be skipped. A variable...
By Jesse Thomas 2023-03-09 21:24:28 0 8K
Information Technology
History of Information Technology
The history of information technology dates back to long before the emergence of the modern...
By Dacey Rankins 2024-03-13 17:35:53 0 26K
Desktop Publishing
Desktop Publishing
Desktop publishing system (NIS) is a set of equipment for preparing the original layout of the...
By FWhoop Xelqua 2023-03-04 17:57:41 0 17K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov