How to build Django backend with React frontend as a separate App with Auth0

The user authentication is done from the React frontend using the sample Github repo from auth0. I can find id_token and access_token in my network tab in the browser.

I could not find a sample code on how my backend running on Django & Django-graphene for Graphql will receive the token from the frontend and will authorize the API access for the frontend.

My present web application database is hosted in AWS RDS. I am currently using Django’s default authentication for Users using username & password and my frontend is authenticating with the backend using JWT tokens.

I want to implement the Auth0 authentication for my users to provide a better & secure service. I would appreciate your help.