Python Microsoft Store API

0
14KB

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
Marketing and Advertising
What Tools Are Used for Online Advertising?
Online advertising would not be possible—or scalable—without the tools that power it....
Por Dacey Rankins 2026-01-29 19:24:17 0 2KB
Human Resources
What HR Certifications Are Valuable?
In today’s competitive job market, having the right qualifications can make a significant...
Por Dacey Rankins 2026-03-23 14:59:34 0 496
Business
How Can a Company Develop a Strong Ethical Culture?
Creating a strong ethical culture within a company is essential for fostering a work environment...
Por Dacey Rankins 2025-01-31 15:24:17 0 8KB
Economics
What Are the Main Goals of Development Economics?
What Are the Main Goals of Development Economics? Development economics is a branch of economics...
Por Leonard Pokrovski 2026-03-09 22:51:20 0 4KB
Programming
Python Motor vs Pymongo
Motor provides a single client class, MotorClient. Unlike PyMongo’s MongoClient,...
Por Jesse Thomas 2023-07-12 21:04:17 0 14KB

BigMoney.VIP Powered by Hosting Pokrov