Python Microsoft Store API

0
13KB

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

Rechercher
Catégories
Lire la suite
Business
What Should I Look for When Hiring a Business Consultant?
Hiring a business consultant can be one of the best decisions a company makes, especially when...
Par Dacey Rankins 2025-02-11 23:20:31 0 7KB
Science Fiction and Fantasy
Earwig and the Witch. (2021)
An orphan girl, Earwig, is adopted by a witch and comes home to a spooky house filled with...
Par Leonard Pokrovski 2022-09-25 17:36:03 0 52KB
Life Issues
The Truman Show. (1998)
An insurance salesman discovers his whole life is actually a reality TV show. My Link
Par Leonard Pokrovski 2023-02-12 17:03:11 0 20KB
История
Ран. Ran. (1985)
Япония, XVI век. Стареющий правитель Хидэтора объявляет о разделе своих владений между тремя...
Par Nikolai Pokryshkin 2023-02-11 19:18:08 0 23KB
Mental Health
Psychosis: Neurobiology
Psychosis has been traditionally linked to the overactivity of the neurotransmitter dopamine. In...
Par Kelsey Rodriguez 2023-06-08 18:02:57 0 11KB

BigMoney.VIP Powered by Hosting Pokrov