Python Microsoft Store API

0
13KB

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

Suche
Kategorien
Mehr lesen
Business
How Do I Assign and Follow Up on Action Items Effectively?
Turning Meeting Talk into Meaningful Progress One of the most common complaints about meetings...
Von Dacey Rankins 2025-08-01 11:05:21 0 5KB
Социальные проблемы
Охотник на оленей. The Deer Hunter. (1978)
История о трех американцах русского происхождения - их жизни до, во время и после войны во...
Von Nikolai Pokryshkin 2023-03-30 09:58:29 0 27KB
Sicherheit
Best VPNs
The essence is simple: you install a program that establishes a connection to a remote server...
Von FWhoop Xelqua 2023-05-02 20:06:53 0 16KB
Life Issues
Spotless Mind. (2004)
When their relationship turns sour, a couple undergoes a medical procedure to have each other...
Von Leonard Pokrovski 2023-01-10 18:05:32 0 20KB
Телевидение
Кубань 24 Прямая трансляция.
«Кубань 24» — единственный в Краснодарском крае телеканал, который осуществляет...
Von Nikolai Pokryshkin 2022-10-28 16:52:44 0 27KB

BigMoney.VIP Powered by Hosting Pokrov