Python Microsoft Store API

0
13Кб

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

Поиск
Категории
Больше
Другое
Silicon Cowboys. (2016)
Three friends dream up the Compaq portable computer at a Texas diner in 1981, and soon find...
От Leonard Pokrovski 2023-06-09 20:27:47 0 36Кб
Finance
What are the most recent (new) finance biography books?
The finance biography genre has experienced a surge of compelling new releases in 2025, offering...
От Leonard Pokrovski 2025-10-08 19:42:14 0 2Кб
Истории
10 OF THE BLOODIEST WARS IN THE HISTORY OF MANKIND
The history of mankind is the history of wars. The Swiss Jean-Jacques Babel calculated that in...
От FWhoop Xelqua 2022-10-24 10:46:26 0 37Кб
История
Сокровища Сьерра-Мадре. The Treasure of the Sierra Madre. (1948)
В небольшом мексиканском городке Тампико знакомятся два бедняка Доббс и Кертин. От местного...
От Nikolai Pokryshkin 2023-02-19 18:34:14 0 22Кб
Business
Psychology of outdoor advertising: how it affects our behavior
  Imagine a city street without bright signs, billboards and glowing screens –...
От Dacey Rankins 2024-09-18 16:44:30 0 15Кб

BigMoney.VIP Powered by Hosting Pokrov