python request microsoft graph,使用python的MS Graph身份验证

Trying to write a Python code where I would like to access my calendar and retrieve my schedule.

Not able to get through the authentication phase.

Seen and tested many examples, but all require running a local server where I browse locally and need to click a button and then enter my credentials.

Aiming to perform all of this inside my Python code.

解决方案

You can achieve this one of two ways:

Using Resource Owner Password Credential flow - This allows you to pass the username and password to Azure AD. Gotcha's here are if there's any extra thing on the auth flow (consent, MFA, password reset) you'll just get a failure.

Using Client Credentials flow - This one requires admin consent. Also, you have to be really careful about this one as this client will have access to ALL info about all users. This should only be used with secure clients, not clients that other users have access to.

Here's a code snippet that showcases both of these:

import adal

import requests

tenant = "contoso.com"

client_id = "YOUR_CLIENT_ID"

client_secret = "YOUR_CLIENT_SECRET"

username = "foo@contoso.com"

password = "mypassword"

authority = "https://login.microsoftonline.com/" + tenant

RESOURCE = "https://graph.microsoft.com"

context = adal.AuthenticationContext(authority)

# Use this for Client Credentials

#token = context.acquire_token_with_client_credentials(

# RESOURCE,

# client_id,

# client_secret

# )

# Use this for Resource Owner Password Credentials (ROPC)

token = context.acquire_token_with_username_password(RESOURCE, username, password, client_id);

graph_api_endpoint = 'https://graph.microsoft.com/v1.0{0}'

# /me only works with ROPC, for Client Credentials you'll need /

request_url = graph_api_endpoint.format('/me')

headers = {

'User-Agent' : 'python_tutorial/1.0',

'Authorization' : 'Bearer {0}'.format(token["accessToken"]),

'Accept' : 'application/json',

'Content-Type' : 'application/json'

}

response = requests.get(url = request_url, headers = headers)

print (response.content)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值