Hi I have two process
- Django and MYSQL
- node/express and mongo db.
1.
How can I configure this two process to point to different url like. Django point to api.abc.com/v1 and node point to api.abc.com/v2 ?
2.
all my user login is inside Django and MYSQL with OAuth. I can authenticate user in Django.
But how can authenticate user in nodejs app with the token send by Django REST OAuth ?
Thanks.