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
Personal Finance
What Are the Tax Advantages of a Roth IRA?
What Are the Tax Advantages of a Roth IRA? Saving for retirement isn’t just about how much...
By Leonard Pokrovski 2025-12-23 19:47:03 0 4K
Social Issues
L.A. Confidential. (1997)
As corruption grows in 1950s Los Angeles, three policemen - one strait-laced, one brutal, and one...
By Leonard Pokrovski 2023-01-30 14:31:19 0 27K
Roleplaying
An Introduction to Roleplaying Games: The Art of Imagination and Adventure
Roleplaying games (RPGs) have captivated generations of players with their immersive worlds,...
By Dacey Rankins 2024-12-05 14:38:28 0 20K
СМИ
В центре внимания. Spotlight. (2015)
Основанная на реальных событиях история журналистского расследования одного из самых громких в...
By Nikolai Pokryshkin 2023-04-18 11:31:42 0 33K
Business
How Do I Start a Career in Project Management?
Project management is a dynamic and rewarding career that involves leading teams, managing...
By Dacey Rankins 2025-05-16 14:43:22 0 11K

BigMoney.VIP Powered by Hosting Pokrov