Azure Authentication using Python MSAL

Microsoft has released MSAL for Python. This has helped to shield away complexities in calling the API using urllib3 libraries and meddling with the parameters. In this article, I will provide sample code on how to get the access token using the following credentials type: UserID and Password Client ID and Client Secret User ID … Read more

Using Azure AD with django_auth_adfs

django_auth_adfs is a good module to integrate Django with Azure AD authentication in the cloud. Although there is a detailed documentation on the setup, the user interface presented were using the legacy user interface. I am attempting to replicate it using the new interface. Web server URL: https://test.com API exposed in web application: https://test/com/test/testpage IdentifierURL … Read more