Python Microsoft Store API

0
15KB

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

Suche
Kategorien
Mehr lesen
Жизненные вопросы
Корпорация монстров. Monsters, Inc. (2001)
Склизкий гад в сливном бачке, мохнатый зверь, похожий на чудовище из «Аленького...
Von Nikolai Pokryshkin 2023-04-08 13:33:37 0 36KB
Социальные проблемы
Как быть хорошей женой. How to Be a Good Wife. (2020)
Хранить очаг и не мешкая исполнять супружеский долг: так учит Полетт Ван дер Бек в своей домашней...
Von Nikolai Pokryshkin 2022-10-23 16:26:44 0 32KB
Marketing and Advertising
Expanding Your Digital Strategy: Deep Dive into Multi-Channel Web Marketing and YouTube Optimization
1. Building a Multi-Channel Framework Modern web marketing is no longer about mastering one...
Von Dacey Rankins 2025-11-13 17:09:01 0 33KB
Business
Network marketing and pyramid schemes: what is the difference
The temptation to have extra income often outweighs common sense. Wanting to make quick money,...
Von Dacey Rankins 2024-09-05 18:41:40 0 21KB
Scouting
Exploring the World of Scouting: The Art of Recreation
Exploring the World of Scouting: The Art of Recreation Scouting, with its ethos of outdoor...
Von Leonard Pokrovski 2024-05-17 00:13:46 0 18KB

BigMoney.VIP Powered by Hosting Pokrov