Python Microsoft Store API

0
7K

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

Căutare
Categorii
Citeste mai mult
Products and Shopping
A Comprehensive Guide to Health Products: Enhancing Wellness Naturally
In today’s fast-paced world, where people are constantly juggling work, family, and social...
By Dacey Rankins 2024-11-22 14:50:52 0 6K
Business
Marketing metrics: what metrics are important to track
Marketing metrics: what metrics are important to track In this article, we will talk...
By Leonard Pokrovski 2024-08-22 17:38:22 0 13K
Science Fiction and Fantasy
Terminator 2: Judgment Day. (1991)
A cyborg, identical to the one who failed to kill Sarah Connor, must now protect her 10-year old...
By Leonard Pokrovski 2022-11-22 21:23:05 0 16K
Business
Sales leads: types and methods of attraction
What does it mean? Sales leads are users who visited the website, visited the company's page on...
By Dacey Rankins 2024-09-13 19:07:34 0 8K
Food
Best Foods for Weight Loss
Studies have shown that certain foods can affect appetite, so they may be beneficial for weight...
By FWhoop Xelqua 2022-09-21 14:00:25 0 22K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov