Python Microsoft Store API

0
13Кб

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

Поиск
Категории
Больше
Business
Top 15 CEO Interview Questions: What to Ask Your Next Leader
Hiring a Chief Executive Officer (CEO) is one of the most critical decisions any company can...
От Dacey Rankins 2025-06-17 16:01:22 0 9Кб
Business
The Basics of a Successful Startup: How to Start a Business from Scratch
The Basics of a Successful Startup: How to Start a Business from Scratch Creating and...
От Leonard Pokrovski 2024-08-01 22:26:44 0 21Кб
Business
Is This Meeting Necessary?
How to Evaluate the Need for a Meeting and Boost Productivity In today’s fast-paced work...
От Dacey Rankins 2025-05-30 14:51:48 0 8Кб
Business
How Important Are Soft Skills and Growth Opportunities?
In today’s competitive job market, employers are realizing that technical skills alone...
От Dacey Rankins 2025-08-12 14:13:13 0 4Кб
Social Issues
Monster (2021)
Monster tells the story of Steve Harmon (Kelvin Harrison, Jr.) a seventeen-year-old honor student...
От Leonard Pokrovski 2022-09-07 13:37:58 0 36Кб

BigMoney.VIP Powered by Hosting Pokrov