Python Microsoft Store API

0
10KB

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
Television
LiveNOW from FOX Live TV USA
Raw & unfiltered news. Watch a non-stop stream of breaking news, live events and stories...
Von Nikolai Pokryshkin 2022-09-03 09:37:06 0 29KB
Agriculture
Wheat
Harvesting is the process of gathering a ripe crop from the fields. Reaping is the cutting of...
Von FWhoop Xelqua 2023-04-21 17:06:13 0 12KB
Social Issues
It Happened One Night (1934)
A renegade reporter trailing a young runaway heiress for a big story joins her on a bus heading...
Von Leonard Pokrovski 2023-06-28 19:38:38 0 23KB
Science Fiction and Fantasy
How to Train Your Dragon. (2010)
A hapless young Viking who aspires to hunt dragons becomes the unlikely friend of a young dragon...
Von Leonard Pokrovski 2023-04-08 20:29:05 0 31KB
Life Issues
It's a Wonderful Life. (1946)
An angel is sent from Heaven to help a desperately frustrated businessman by showing him what...
Von Leonard Pokrovski 2022-11-16 21:02:59 0 20KB
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov