Python Microsoft Store API

0
13KB

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

Rechercher
Catégories
Lire la suite
Software
Unraveling the Science Behind Software: Bridging the Gap Between Logic and Creativity
Unraveling the Science Behind Software: Bridging the Gap Between Logic and Creativity In the...
Par Leonard Pokrovski 2024-05-27 22:10:35 0 19KB
Business
Who is a COO?
1. Brief History of the COO Profession: The COO profession is relatively recent. At the...
Par Dacey Rankins 2024-07-19 19:49:50 0 20KB
Business
Meeting Logistics: Frequency, Format, Confidentiality, Evaluation
Effective mentoring or coaching relationships thrive not only on trust and rapport but also on...
Par Dacey Rankins 2025-07-22 11:07:41 0 4KB
Business
Why Do Most Startups Fail?
Starting a business can be an exciting and rewarding venture, but the sad reality is that most...
Par Dacey Rankins 2025-04-09 13:44:31 0 6KB
Autre
What Is a Woman? (2022)
Political commentator Matt Walsh explores the changing concepts of sex and gender in the digital...
Par Leonard Pokrovski 2023-07-08 20:42:48 0 22KB

BigMoney.VIP Powered by Hosting Pokrov