Python Microsoft Store API

0
13K

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

Cerca
Categorie
Leggi tutto
Television
RT, live TV. Russia.
RT’s flagship, award-winning English-language channel airs 24/7 from the network’s...
By Nikolai Pokryshkin 2022-11-14 17:11:18 0 33K
Business
Why is Sustainability Important?
In recent years, the concept of sustainability has gained immense importance in discussions...
By Dacey Rankins 2025-02-03 16:00:22 0 15K
Horror
Jaws. (1975)
When a killer shark unleashes chaos on a beach community off Cape Cod, it's up to a local...
By Leonard Pokrovski 2023-04-11 18:50:31 0 25K
Caribbean
Caribbean: all about the regions
Caribbean: all about the region and life on the islandsThe Caribbean is a region of peace between...
By FWhoop Xelqua 2023-04-10 20:44:25 0 27K
Business
What Are the Benefits of Mentoring for the Mentor?
Mentoring is often viewed through the lens of how it benefits the mentee, but the advantages for...
By Dacey Rankins 2025-05-26 14:01:34 0 6K

BigMoney.VIP Powered by Hosting Pokrov