msal

AAD B2C MSAL for python Token Validation without the public key in JWKS_URI

AAD B2C MSAL for python Token Validation without the public key in JWKS_URI Question: Hello Everyone I could REALLY use some help on this. When trying to validate my token using this code from MSAL library https://github.com/AzureAD/microsoft-authentication-library-for-python cache = _load_cache() # This web app maintains one cache per session cca = _build_msal_app(cache=cache) accounts = cca.get_accounts() …

Total answers: 2

How to connect to Microsoft Dataverse API Endpoint with Python

How to connect to Microsoft Dataverse API Endpoint with Python Question: I’m facing an issue in connecting to Microsoft Dataverse API endpoint through Python. The code is broken down into three parts: A) Token Generation B) Endpoint API call Option 1 C) Endpoint API call Option 2 ################ Token generation code begins ################ import adal …

Total answers: 2

Microsoft Graph API: Limiting MSAL Python Daemon app to individual user access

Microsoft Graph API: Limiting MSAL Python Daemon app to individual user access Question: I am building a Python Daemon app to download files which are accessible to an individual O365 user via Graph API. I am trying to use ConfidentialClientApplication class in MSAL for authorization. In my understanding – this expects “Application Permissions” (the API …

Total answers: 2