Questions tagged [python-social-auth]

Python Social Auth is an easy to setup social authentication/registration mechanism with support for several frameworks and auth providers.

From its website:

Python Social Auth

Python Social Auth is an easy to setup social authentication/registration mechanism with support for several frameworks and auth providers.

Crafted using base code from django-social-auth, implements a common interface to define new authentication providers from third parties. And to bring support for more frameworks and ORMs.

Authentication backends

Python Social Auth supports Google, Twitter, Facebook, GitHub, and many other services out of the box. It also has direct support for OAuth and OpenID. It is designed to be easily extensible.

Links

557 questions
0
votes
1 answer

Where in database does python-social-auth store access token?

I am using python-social-auth (within django) to implement facebook-login. I am able to successfully sign into my app using facebook and extract user email. But where in the database can I find the OAuth token generated by facebook? Is it in the…
kamalbanga
  • 1,881
  • 5
  • 27
  • 46
0
votes
1 answer

Problems getting jobs and education on Linkedin with Django (Python Social Auth)

I'm trying to get the linkedin profile, as complete as possible. The problem is that LinkedIn does not give me the "r_fullprofile" option whereby, "educations" I get them as "null" and "positions" only returns me the current jobs The only…
normeno
  • 105
  • 1
  • 10
0
votes
1 answer

python social auth separate urls for signup and login django

I have started to use python-social-auth in a django project to authenticate the users from google, linkedin, and potentially other sources. I was able to integrate it to my project, and to create new users with both google and linkedin. I…
Wagh
  • 4,202
  • 5
  • 39
  • 62
0
votes
1 answer

python social auth linkedin picture url is null

I'm using python social auth with django to login via LinkedIn and I try to obtain the public picture URL. However, no matter what I do I keep getting null. I tried every combination possible, from public-picture-url to pictureUrl, every combo of…
Ronen Ness
  • 9,923
  • 4
  • 33
  • 50
0
votes
1 answer

Django Integrating Python Social Auth And The Default Auth With A Custom User Model:

I have a project I am working on that requires some users to be authenticated via facebook and others to sign up using a custom model. The facebook users will not have the same sign up credentials as the custom model. For example- there will be a…
Chad Van De Hey
  • 2,716
  • 3
  • 29
  • 46
0
votes
1 answer

Get django user profile from python-social-auth

My Django project lets users log in with a Google or Facebook profile, using python-social-auth's django integration. Once they've logged in, is there a way to get a link to their profile on Google or Facebook? I'm trying to do something like…
Tom
  • 7,269
  • 1
  • 42
  • 69
0
votes
0 answers

i am getting IntegrityError at /complete/google-oauth2/ in python social auth

I am using python social auth for signup an login urls i am using for signup Signup with Google
Signup with Linkedin First time user is getting signed up. User is getting…
Wagh
  • 4,202
  • 5
  • 39
  • 62
0
votes
1 answer

How to register users on my app with social auth?

I am allowing users to register/login via facebook and username/passwd. So if a user registers via fb, then how do I save the "User" instance without username and password ?
0
votes
1 answer

/complete/email does not exist in python-social-auth

I am using python-social-auth for login feature. I added facebook and instagram logins. Now I am trying to do a standard authentication with email. Documentation says that my login form should submit to /complete/email. But when I submit it says…
Jahongir Rahmonov
  • 13,083
  • 10
  • 47
  • 91
0
votes
1 answer

How to solve a conflict between a local app named 'social' and 'python-social-auth' in settings.py?

I have a Django Application in which I wanted to include social logins so I decided to choose 'python-social-auth' for that purpose but the problem is that when I include social.apps.django_app.default in INSTALLED_APPS in settings.py and run…
Mahammad Adil Azeem
  • 9,112
  • 13
  • 57
  • 84
0
votes
1 answer

Extracting company, phone numbers and country while signing in with Google+ using python social auth

I am working on implementing sign in with gplus in my website. I have added the following settings : SOCIAL_AUTH_GOOGLE_PLUS_KEY = 'my-key' SOCIAL_AUTH_GOOGLE_PLUS_SECRET = 'my-secret-key' SOCIAL_AUTH_GOOGLE_PLUS_IGNORE_DEFAULT_SCOPE =…
ranjansaga
  • 106
  • 1
  • 12
0
votes
1 answer

How to dynamically select which client ID to use when authenticating to Stripe (OAuth2) using python-social-auth

I need my users to have a test mode / live mode switch, exactly like Stripe has on its dashboard. I'm using python-social-auth to authenticate the user with Stripe, using a custom pipeline step to retrieve the access token and publishable key, and…
0
votes
1 answer

Facebook authentication error in Heroku based django website

I have fully created a Django website with python-social-auth for facebook authentication and have hosted it on heroku(free version). The problem however is,that my Facebook authentication,which was working perfectly locally,is not working and it…
404
  • 97
  • 3
  • 12
0
votes
1 answer

Python Social Auth: Not change info for existant user when associating account

My django app is using Python Social Auth to register new users with Fb/G+/Twitter but I also want users to be able to associate their existing accounts to Facebook/Google+/Twitter. The problem is that using the standard pipeline whenever I connect…
Fabio
  • 3,015
  • 2
  • 29
  • 49
0
votes
1 answer

How to make most common OpenID logins look the same?

I want my users to be able to login using all common OpenIds. But there seems to be a forest of clauses on how to use logos from google, facebook, yahoo and twitter. Actually I'd prefer a wider button with the text on it, but it seems that all these…
JasonTS
  • 2,479
  • 4
  • 32
  • 48