1 min readJul 14, 2019
If what you are talking about is using Azure as an Authorization server I would look into OpenID connect. The basic flow I use in another project is:
- Receive token
- Validate token against provider (like Azure)
- Manually create a new token. https://mozilla-django-oidc.readthedocs.io/en/stable/installation.html#quick-start
- Return the token to the user.
If what you mean is making Azure trust your tokens, I would need more details about what you are trying to do.