I'm working with two servers, one a NodeJS app (FeathersJS and Grant for authentication), and the other is a Django app, using django-oauth-toolkit for authentication.
I am trying to get the NodeJS app to oauth with the python django app, so here is what I have done so far:
- Registered Feathers with Django Oauth toolkit -
- Configured Feathers/Grant with the following options:
"key": "xxx",
"authorize_url": "https://www.com/o/authorize",
"access_url": "https://www.com/o/token"
But I'm running into an issue where the grant workflow is not receiving the access token, and am stuck at this point. Has anyone tried integrating two apps as such and been successful in this process? I'd appreciate any pointers, suggestions. Thanks!