Python Microsoft Store API

0
5KB

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
Travel
Named the most visited attractions in the world
The authoritative publication Travel + Leisure has published a list of the main tourist...
Por FWhoop Xelqua 2023-01-03 14:47:15 0 14KB
Television
TMJ4 Live TV in Milwaukee, Wisconsin, USA
TMJ4 was the first commercial TV station in Wisconsin, hitting the airwaves on December 3, 1947....
Por Nikolai Pokryshkin 2022-10-27 14:39:48 0 18KB
News and Media
The Role of News and Media in Society: Informing, Shaping, and Challenging the Public
The news and media landscape has undergone dramatic changes in the past few decades, reshaping...
Por Dacey Rankins 2024-11-13 15:41:21 0 2KB
Science Fiction and Fantasy
Groundhog Day (1993)
A narcissistic, self-centered weatherman finds himself in a time loop on Groundhog Day, and the...
Por Leonard Pokrovski 2023-06-24 20:18:36 0 28KB
Senior Health
Understanding Senior Health: Key Aspects of Wellness in Later Life
As people age, maintaining good health becomes a critical aspect of quality of life. Senior...
Por Dacey Rankins 2024-11-28 14:57:24 0 1KB
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov