Python Microsoft Store API

0
14K

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
Social Issues
The Godfather Part II (1974)
The continuing saga of the Corleone crime family tells the story of a young Vito Corleone growing...
By Leonard Pokrovski 2022-11-02 19:51:32 0 30K
Social Issues
Heat. (1995)
A group of high-end professional thieves start to feel the heat from the LAPD when they...
By Leonard Pokrovski 2023-01-26 17:55:08 0 26K
Finance
Discount trap: how not to fall for the marketing tricks of car dealerships
Today's auto market is full of enticing offers promising significant discounts and additional...
By Dacey Rankins 2024-10-04 15:37:40 0 14K
Personal Development
How do I become more motivated?
How Do I Become More Motivated? Motivation is the internal drive that pushes us to take action,...
By Michael Pokrovski 2026-02-10 20:05:31 0 2K
Business
6 De-Escalation Techniques to Diffuse Conflict
Conflicts can quickly escalate if not handled with care, especially in high-stress environments....
By Dacey Rankins 2025-06-06 14:48:28 0 12K

BigMoney.VIP Powered by Hosting Pokrov