Python Microsoft Store API

0
15χλμ.

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

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Science Fiction and Fantasy
The Lord of the Rings: The Two Towers. (2002)
The continuing quest of Frodo and the Fellowship to destroy the One Ring. Frodo and Sam discover...
από Leonard Pokrovski 2022-11-11 17:38:19 0 30χλμ.
Marketing and Advertising
What Size Are Outdoor Advertising Billboards?
One of the most important practical questions in outdoor advertising is billboard size. Billboard...
από Dacey Rankins 2026-01-30 19:54:38 0 5χλμ.
Business
How Did They Climb to the Top—Career Path and Pivotal Roles?
Every leader’s journey to the top is unique, but most share common themes of persistence,...
από Dacey Rankins 2025-08-14 21:37:01 0 12χλμ.
Business
How Much Does a Business License Cost?
Entrepreneurs often spend months thinking about revenue. Customers. Marketing. Products....
από Dacey Rankins 2026-06-09 14:11:22 0 5χλμ.
Social Issues
Capturing the Friedmans (2003)
Documentary on the Friedmans, a seemingly typical, upper-middle-class Jewish family whose world...
από Leonard Pokrovski 2023-07-31 20:28:12 0 538χλμ.

BigMoney.VIP Powered by Hosting Pokrov