Python Microsoft Store API

0
5χλμ.

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

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Tile Games
Mahjong
Mahjong...
από Leonard Pokrovski 2024-04-10 00:43:57 0 7χλμ.
Internet
Google ads Part Two
Part One: Google ads: interface and settings (bigmoney.vip) Search and Display Network The two...
από FWhoop Xelqua 2023-02-01 15:01:27 0 10χλμ.
Visual Arts
Navigating the Palette: A Guide to Shopping for Visual Arts
Navigating the Palette: A Guide to Shopping for Visual Arts Introduction:In the realm of visual...
από Leonard Pokrovski 2024-06-03 22:04:05 0 17χλμ.
Television
CBS, WIVB 4 Live TV. Buffalo, New York, United States.
WIVB-TV, (UHF digital channel 39), is a CBS-affiliated television station located in Buffalo, New...
από Nikolai Pokryshkin 2022-11-03 10:26:05 0 27χλμ.
История
Непрощённый. Unforgiven. (1992)
История Уильяма Мунни — бывшего хладнокровного убийцы, нашедшего в себе силы покончить с...
από Nikolai Pokryshkin 2023-02-13 13:10:57 0 14χλμ.
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov