python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
I'm getting "social_core.exceptions.AuthForbidden: Your credentials aren't allowed" error in Django python-social-auth/social-auth-app-django
I am using social-auth library to authenticate user with OAuth2. I can authenticate user with accessToken and check infos included in this token. The token is valid. The problem appears in line:
user ...
Karls
Votes: 0
Answers: 0
Hi guys! simple error with AUTH_USER_MODEL
I created a User model in apps.accounts.models,
added it to installed_apps
specified it as AUTH_USER_MODEL
INSTALLED_APPS = [
'apps.accounts'
]
AUTH_USER_MODEL = 'accounts.User'
and got an error...
Kana
Votes: 0
Answers: 1
Google API: java.lang.ClassNotFoundException: Didn't find class "sun.misc.Service"
I've imported all necessary google dependencies for authenticate the user:
def play_services_version = "15.0.1"
implementation 'com.google.api-client:google-api-client:1.33.0'
implementation...
Funny Moments
Votes: 0
Answers: 2
What is the role of the refresh token flow within the modern authentication/authorization space?
I am having some trouble grasping the role of the refresh token flow within modern SAML/OAuth/OIDC methods.
I understand that authentication is about proving a user is who they say they are, while aut...
ByronPark
Votes: 0
Answers: 1