Python Microsoft Store API

0
9K

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
Social Issues
A Christmas Gift from Bob (2020)
A struggling street musician finds himself the target of an animal welfare investigation that...
Por Leonard Pokrovski 2022-10-07 22:30:32 0 23K
Financial Services
Microeconomics
Key points Demand curves can shift. Changes in factors like average income and...
Por Mark Lorenzo 2023-01-27 15:38:59 0 8K
Business
Factor of production
What is a factor of production? DefinitionFactors of production are the limited resources needed...
Por Dacey Rankins 2024-09-19 17:12:05 0 13K
Social Issues
Babyteeth (2020)
When seriously ill teenager Milla falls madly in love with smalltime drug dealer Moses, it's her...
Por Leonard Pokrovski 2022-10-24 19:23:33 0 21K
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...
Por Dacey Rankins 2025-03-12 14:46:33 0 5K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov