Python Microsoft Store API

0
12KB

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

Pesquisar
Categorias
Leia mais
Homeowners
How to rent an apartment - features of finding a tenant and common mistakes of landlords
Renting out an apartment is one of the ways to generate income for property owners. It seems that...
Por FWhoop Xelqua 2023-01-18 13:24:48 0 21KB
История
Мост через реку Квай. The Bridge on the River Kwai. (1957)
Захваченные в плен японцами британские солдаты и их командир полковник Николсон вынуждены строить...
Por Nikolai Pokryshkin 2023-03-08 13:16:07 0 23KB
Business
How Do Customer Needs Align with Product Requirements?
At the heart of product development lies one essential principle: building something that...
Por Dacey Rankins 2025-08-22 18:37:07 0 2KB
Internet
Google Shopping / Google ads
Part 4: Google Ads Guide (2022). Part 4: All about the CMC (bigmoney.vip) Google Shopping is a...
Por FWhoop Xelqua 2023-02-07 18:52:19 0 18KB
Деньги
Финансовая Энергия
Как энергия экстрасенсов работает для привлечения финансов и улучшения материального...
Por Nikolai Pokrovski 2024-12-17 21:43:24 0 18KB

BigMoney.VIP Powered by Hosting Pokrov