Python Microsoft Store API

0
9Кб

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

Поиск
Категории
Больше
Social Issues
L.A. Confidential. (1997)
As corruption grows in 1950s Los Angeles, three policemen - one strait-laced, one brutal, and one...
От Leonard Pokrovski 2023-01-30 14:31:19 0 19Кб
Television
CGTN news (English) Live TV from China.
CGTN news, China Central Television (former CCTV 9) is a 24/7 news TV channel in the English...
От Nikolai Pokryshkin 2022-08-29 20:56:10 0 26Кб
Social Issues
Can You Keep a Secret? (2019)
Thinking they're about to crash, Emma spills her secrets to a stranger on a plane. At least, she...
От Leonard Pokrovski 2023-05-26 19:03:42 0 24Кб
Science Fiction and Fantasy
The Lord of the Rings: The Fellowship of the Ring.(2001)
A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful...
От Leonard Pokrovski 2022-11-07 19:54:46 0 21Кб
Television
WTNH News 8 Newscasts Live TV. New Haven, Connecticut, USA.
WTNH, channel 8, is an ABC-affiliated television station located in New Haven, Connecticut, USA....
От Nikolai Pokryshkin 2022-11-08 19:34:30 0 22Кб
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov