[Django]-How do I create a user using OAuth2?

6👍

in order to make an account you don’t need a token, Signup using the normal flow, and on login request authenticate the user and give the token for further communication.

6👍

The answer is No, OAuth2 is usually meant for authorisation which in turn needs authentication.

So for creating account you cannot use Oauth, you have to use normal flow , setup account and then you can use OAuth to gain access token.

Leave a comment