django-rest-framework-social-oauth2
django-rest-framework-social-oauth2 copied to clipboard
python-social-auth and oauth2 support for django-rest-framework
Twitter use a 3-legged OAuth flow. First step is getting the oauth_token. For this you need the call back url and oauth_consumer_key. I just do not know call back url...
Hello, Firstly thanks for this great library you've created and shared. I've used this library before and it worked very fine, but I'm facing issue while integrating it in another...
I am using Django rest framework social oauth2 for authentication in one Django app. For development purposes, I have used this package with Sqlite3 (SQL database) and it works perfectly....
Hi guys! First of all, thank you a lot for your work, it saved me a big deal of time! I was developing an app and adhered the docs pedantically....
> ImproperlyConfigured at /auth/token settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details. [https://docs.djangoproject.com/en/3.1/topics/db/multi-db/#multiple-databases](url) `DATABASES = { 'default':{}, 'sqlite3': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': str(BASE_DIR)+'/db.sqlite3',...
works perfectly While users login with the Facebook **first time**. in some cases, admin can disable the users(**is_active=False**). Users can't log in with Facebook after disabling by admin. getting error...
Hi there, This is more of a question than any other kinds of issues! :) I am using `django-rest-framework-social-oauth2` for enabling the users to use the system by their social...
Hi all , So I went on to try with Instagram Oauth and came up with an error as : {"error":"access_denied","error_description":"Authentication process canceled"} Steps to replicate the error : Send...
## Steps to reproduce Set up a test case as follows: ```python import logging import json from django.test import TestCase, Client from django.urls import reverse from oauth2_provider.models import Application from...
Reference the User model with get_user_model() for compatibility with custom models