Milan Žiaran

Results 3 comments of Milan Žiaran

Hi @LearningProcesss. First you need to exchange the code for access_token. This is done by sending a POST request to `https://github.com/login/oauth/access_token` with body: ``` { "client_id": "string", "client_secret": "string", "code":...

@wagnerdelima Hi, I have the same problem. I see users with id-like usernames in the database. The only difference is that I'm trying to authenticate using GitHub. On top of...

@wagnerdelima Thank you very much for your quick response! Overriding the `do_auth` and `user_data` methods from the DjangoOAuth2 as shown [here](https://github.com/RealmTeam/django-rest-framework-social-oauth2/issues/42) fixed this, I was wondering if there's maybe a...