I would like to know how to integrate Microsoft Entra External ID into my Flask-based mobile app. Currently, the app uses custom authentication through Flask, and user credentials are stored in a table in a SQL Server database. An admin authorizes each user stored in the table with a flag column (0 or 1). Each authorized user also has private IDs that allow the app to retrieve useful information. I would like to know if these app processes can be maintained with Microsoft Entra External ID, or if the code needs to be completely rewritten.
I tried to search for documentation and guides related to my problem in Python but without success.
You should be able to integrate your application with Microsoft Entra External ID. There are few important points that need clarification.
To summarize, the changes you want to add when it comes to Microsoft Entra External ID are not only about the source code changes. This is also how you update your architecture and data in the existing database.