Python Microsoft Store API

0
5K

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

Cerca
Categorie
Leggi tutto
Business
Digital marketing
Digital marketing is a way to promote goods and services over the Internet. To find new...
By Dacey Rankins 2024-09-03 18:43:08 0 6K
Personal Finance
We conduct an audit of assets and liabilities
What will you learn?   What is personal capital   How to Build a...
By FWhoop Xelqua 2022-10-07 15:36:52 0 16K
Business
B2B marketplaces yesterday, today and tomorrow: what are they and why do businesses need them?
15-17% of B2B sales in the world today pass through marketplaces - the segment of "business"...
By Dacey Rankins 2024-09-25 18:45:30 0 25K
Life Issues
The Elephant Man. (1980)
A Victorian surgeon rescues a heavily disfigured man who is mistreated while scraping a living as...
By Leonard Pokrovski 2023-03-01 17:36:28 0 9K
Horror
The Black Demon. (2023)
Stranded on a crumbling rig in Baja, a family faces off against a vengeful megalodon shark. My...
By Leonard Pokrovski 2023-06-12 20:15:46 0 25K
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov