Python Microsoft Store API

0
14K

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

Search
Categories
Read More
Business
What Are the Basic Types of Communication Skills? (Verbal, Written, Non-Verbal, Listening)
Introduction Communication is the foundation of human interaction. Every conversation, message,...
By Dacey Rankins 2025-11-20 15:14:33 0 3K
Социальные проблемы
В порту. On the Waterfront. (1954)
В центре сюжета судьба простого докера - Терри Мэллоу, терзающегося сомнениями и решающего встать...
By Nikolai Pokryshkin 2023-03-22 18:01:54 0 39K
Cooking
Rabbit salad with ham, rice, corn and cucumber
Surprise guests with an unusual dish for the New Year. Salad "Rabbit" with corn, rice and ham, as...
By FWhoop Xelqua 2022-12-05 16:51:39 0 21K
Социальные проблемы
Новый порядок. New Order. (2020)
Роскошная свадьба представителей высшего класса прерывается явлением непрошенных гостей - в...
By Nikolai Pokryshkin 2022-10-08 20:37:42 0 29K
Business
B2C: how the relationship between business and buyer works
Features of B2C salesA business that is aimed at an ordinary buyer has its own characteristics....
By Dacey Rankins 2024-09-02 19:00:28 0 13K

BigMoney.VIP Powered by Hosting Pokrov