I have a situation, currently, my application is built using Django and Angular for UI and Backend. In Angular UI I'm using Azure AD for user login to access the application, then it generates the bearer token. I have written all the APIs in Django which are unprotected/less secured Now my question is how can I use the "Bearer token" which got generated by Angular UI for all the Django API calls or Django URLs?
How can I validate the Django URLs using Azure AD???