Python Microsoft Store API

0
14χλμ.

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

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Finance
What Distinguishes a Biography of a Financier from a Standard Finance Book?
What Distinguishes a Biography of a Financier from a Standard Finance Book? Finance literature...
από Leonard Pokrovski 2025-10-08 21:09:38 0 4χλμ.
Personal Finance
What Are the Tax Advantages of a Roth IRA?
What Are the Tax Advantages of a Roth IRA? Saving for retirement isn’t just about how much...
από Leonard Pokrovski 2025-12-23 19:47:03 0 1χλμ.
Life Issues
Me Before You. (2016)
A girl in a small town forms an unlikely bond with a recently-paralyzed man she's taking care of....
από Leonard Pokrovski 2023-05-20 14:43:09 0 38χλμ.
Социальные проблемы
Зелёная книга. Green Book. (2018)
1960-е годы. После закрытия нью-йоркского ночного клуба на ремонт вышибала Тони по прозвищу...
από Nikolai Pokryshkin 2023-02-07 13:15:09 0 27χλμ.
Financial Services
Price ceilings and price floors
Key points Price ceilings prevent a price from rising above a certain level....
από Mark Lorenzo 2023-07-10 20:13:41 0 12χλμ.

BigMoney.VIP Powered by Hosting Pokrov