Python Microsoft Store API

0
15K

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

Căutare
Categorii
Citeste mai mult
Television
Joy News Live Stream TV. Ghana. (English).
Joy News is a dedicated 24 hours news and current affairs television channel. The channel...
By Nikolai Pokryshkin 2022-12-10 20:06:41 0 46K
Life Issues
Life Of Brian (1979)
Born on the original Christmas in the stable next door to Jesus Christ, Brian of Nazareth spends...
By Leonard Pokrovski 2023-06-30 19:15:42 0 25K
Illustration
How to earn money through illustration
What will you need to make money on drawings on the Internet? Before you learn how to make money...
By FWhoop Xelqua 2022-10-04 14:57:43 0 35K
Social Issues
Monster (2021)
Monster tells the story of Steve Harmon (Kelvin Harrison, Jr.) a seventeen-year-old honor student...
By Leonard Pokrovski 2022-09-07 13:37:58 0 40K
Social Issues
The Cove (2009)
Using state-of-the-art equipment, a group of activists, led by renowned dolphin trainer Ric...
By Leonard Pokrovski 2023-07-06 20:33:34 0 28K

BigMoney.VIP Powered by Hosting Pokrov