Microsoft Graph API: Authorization_IdentityNotFound
问题 I'm following the Get access without a user guide to write a Python script that will call Microsoft Graph. This script will be scheduled from cron so it cannot get admin consent (therefore authorize using Client Credentials). I am able to successfully obtain a token using this call: request_url = "https://login.microsoftonline.com/mytenant.onmicrosoft.com/oauth2/v2.0/token" data = { 'Host' : 'login.microsoftonline.com', 'Content-Type' : 'application/x-www-form-urlencoded', 'client_id' : 'my