I have two django projects/microservices which uses two separate databases:
Todo auth - built for authentication - todo auth database
Todo project - built to view todo information specific to a user - todo database
What I basically require is,
Once a user login using the todo auth project and get a token,
When using the token in the todo project, the user should be authenticated and created (if the user does not exist) in the todo database with the help of Remote user authentication.
I only want to use simple-jwt with jwk url to achieve this.
Is this possible? Please let me know how I can achieve this. Many thanks.
PS: I'm running the two projects/microservices separately in the same development server on two different ports