I’ve been going around in circles for how to get this project integrated correctly with Auth0 and would love some assistance.
My setup is Django as the backend with the user database. I want to keep using Django as the user database. The frontend is entirely React/Redux.
The frontend gets data via an API hosted on the same Django instance using django rest framework.
I have Auth0 integrated with Django currently and this works. I would also like to get my Frontend to be aware of the session too.
I’ve tried adding the @auth0/auth0-spa-js package but the frontend always returns false on auth0Client.isAuthenticated()
Do I need separate applications for the Django and React or can I use the same Application for both? I’m using the Django web app application currently for both.
Any guidance would be v much appreciated.