Reputation: 33
So I'm trying to integrate a Django/Python backend framework with a React Native frontend, and I was wondering if there are any good resources/answers out there to handle OAuth flow?
I've tried a lot of different aspects, and from the server side at least, the best thing that possibly worked is OAuth Toolkit
. I also want to use Django REST framework to exchange data between server/client.
However, I am confused about the flow of authentication between the app and the server and would appreciate a better understanding. Thanks!
Upvotes: 1
Views: 1977
Reputation: 41
The Django OAuth Toolkit documentation has a good tutorial on how to get started:
A basic summary of the authentication flow:
Upvotes: 3