Python Microsoft Store API

0
15KB

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
Mental Health
Dementia: Signs and Symptoms
The signs and symptoms of dementia are termed as the neuropsychiatric symptoms, also known as the...
Von Kelsey Rodriguez 2023-07-13 20:01:00 0 14KB
Жизненные вопросы
Страсти Жанны д'Арк. The Passion of Joan of Arc. (1928)
1431 год. Жанна д`Арк предстает перед судом по обвинению в ереси.
Von Nikolai Pokryshkin 2023-04-13 17:12:39 0 30KB
Business
How Can I Improve My Voice for Public Speaking?
Your voice is your main instrument when speaking in public. It carries your ideas, expresses...
Von Dacey Rankins 2025-12-11 16:38:23 0 8KB
Motorcycles
The Thrill of Motorcycles: A Deep Dive into Riding Culture and Innovation
Motorcycles are more than just a mode of transportation; they represent freedom, adventure, and a...
Von Dacey Rankins 2024-10-11 15:58:15 0 28KB
Business
How to Build Brand Loyalty?
The most revealing moment in business often arrives when a customer has every reason to...
Von Dacey Rankins 2026-05-30 19:56:19 0 1KB

BigMoney.VIP Powered by Hosting Pokrov