How to make auth0 users to pass @login_required decorator in Django?

No. @login_required decorator uses request.user which is always Anonymous when authenticated by auth0. I wrote a small function that gets email from request.session.get(“user”), and then find the user. If the user is new, then create one. Set the “user” in the context before render.