Python Microsoft Store API

0
15χλμ.

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

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Ужасы
Заклятие 3: По воле дьявола. The Conjuring: The Devil Made Me Do It. (2021)
18 июля 1981 года Эд и Лоррейн Уоррены присутствовали при проведении экзорцизма над маленьким...
από Nikolai Pokryshkin 2022-09-19 20:53:22 0 47χλμ.
Business
What Are Your Strengths and Weaknesses? A Window into Self-Awareness and Growth Potential
The interview question “What are your strengths and weaknesses?” remains a classic...
από Dacey Rankins 2025-06-25 12:42:58 0 25χλμ.
Business
Describe a Challenging Situation You've Faced and How You Handled It
Employers Look for Problem-Solving Skills and Resilience One of the most telling questions in an...
από Dacey Rankins 2025-06-18 14:54:01 0 18χλμ.
Economics
What is the foreign exchange market?
What Is the Foreign Exchange Market? The foreign exchange market, commonly called the forex...
από Leonard Pokrovski 2026-08-13 20:34:26 0 4χλμ.
Financial Services
8 money tips for freelance workers
If you’ve traded in your cubicle to become a freelancer, you’re not alone. Fifteen...
από Mark Lorenzo 2023-05-18 19:49:49 0 38χλμ.

BigMoney.VIP Powered by Hosting Pokrov