Python Microsoft Store API

0
14K

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
Business
How Can Late-Stage Startups Maintain Innovation?
As startups transition into late-stage companies, maintaining innovation becomes a challenge....
Por Dacey Rankins 2025-03-07 13:42:46 0 14K
Magazines and E-zines
The Enduring Appeal of Magazines in the Digital Age
In today's world, where digital media dominates our lives, one might think that magazines have...
Por Dacey Rankins 2025-01-23 14:59:09 0 12K
Alternative
Results of the second CAIPAN seminar from CNES
The second seminar of the French Space Agency (CNES) CAIPAN 2, held in Toulouse on October 13-14,...
Por FWhoop Xelqua 2022-12-12 15:22:20 0 20K
Personal Finance
What Will My Monthly Payment Be — and Can I Afford This Loan?
What Will My Monthly Payment Be — and Can I Afford This Loan? When you’re thinking...
Por Leonard Pokrovski 2025-11-06 19:18:15 0 3K
Ethnic and Regional
The most unusual sweets of the world
Almost all people tend to treat themselves to sweets. Residents of African countries, Japanese...
Por FWhoop Xelqua 2022-11-21 13:16:29 0 23K

BigMoney.VIP Powered by Hosting Pokrov