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

Python-social-auth how can i get uid fullname etc. with facebook

social-auth facebook authentication. i can get user photo:

You are logged in as {{ user.username }} !

<--working code link :…
omgbbqhax
  • 411
  • 5
  • 18
0
votes
1 answer

Python-social, Django-nonrel, and GAE fighting over files, python-tk

I'm trying to host a Django app on Google App Engine, so I'm using Django nonrel and following these instructions. Now, trying to get Python social auth working on it, I'm running into two problems. First, when working with code very similar to the…
pablo.meier
  • 2,339
  • 4
  • 21
  • 29
0
votes
2 answers

How do I get the list of login stems for configured backends in python-social-auth?

I have a Django project running django-rest-framework to provide a backend for BackboneJS application. I am trying to implement python-social-auth to authenticate the app via AJAX. I need to send via AJAX a list of possible login urls to render in…
Brendan
  • 18,771
  • 17
  • 83
  • 114
-1
votes
1 answer

Authentication with Microsoft Azure AD in a multi-tenant app

Following the documentation, registered an application with Accounts in any organizational directory. The Tenant where the application resides is in "Default Directory" and has only one user, tiagomartinsperes@gmail.com. Also, the app has user…
-1
votes
1 answer

Django with social auth: Direct assignment to the forward side of a many-to-many set is prohibited

When trying to authenticate (create) a user in Django, I get the following error: Direct assignment to the forward side of a many-to-many set is prohibited. Use posts.set() instead. I'm aware that there are similar questions to this on Stack…
Chris
  • 1,206
  • 2
  • 15
  • 35
-1
votes
1 answer

How to integrate social signup/signin with Auth0 with AWS Lambda with Python?

I have already setup email-password based signup/signin function, at this moment, I'd like to ad social signup/signin function on the project. The project is working on the AWS Lambda Python3.7 runtime.
-1
votes
1 answer

Django Social Auth Linkedin Rest API Internal Server Error

I'm using Django Social Auth with Linkedin OAuth2 backend and keep getting a HTTP 500 Internal Server Error when trying to authenticate with my Linkedin account. { "errorCode": 0, "message": "Internal service error", "requestId":…
DrewJaja
  • 97
  • 1
  • 5
-1
votes
1 answer

not works yahoo-oauth2 authorization in django social auth

i want to be authorized on the site with yahoo account. In django app i have django-social-auth==0.7.28, Django==1.10.5 on Python3.5. my settings.py AUTHENTICATION_BACKENDS = ( .... …
VolArt
  • 438
  • 2
  • 13
-1
votes
1 answer

How to post a tweet using django and python-social-auth

I'm new using django and APIs, so I hope you can help me. I'm using python-social-auth to get access to user's twitter, but right now I just finished this tutorial tutorial for oauth I would like to know what should I do to be able to post a…
ebdecastro
  • 61
  • 1
  • 2
  • 11
-1
votes
1 answer

Not able to post status using social auth in twitter and facebook

When trying to update status in facebook and twitter using social auth, getting below exception. Any idea how to fix it out? 20:31:56,559 INFO [stdout] (default task-7) Exception occured in call back method :::::…
-1
votes
2 answers

Django facebook, twitter and google + authentication

I need to get facebook, google+ and twitter authentication for my django app. What module should I use? I am using Django 1.8 and I've checked a couple of them but which one is the best? Any suggestions will be appreciated. Thanks in advance!
rishran
  • 596
  • 2
  • 7
  • 26
-1
votes
2 answers

Get user email in Python-social-auth

I have included this in my settings.py file: SOCIAL_AUTH_FACEBOOK_SCOPE = ['email'] how do i access facebook user's email in pipeline. I am using pythons-social-auth I want to use user email address from facebook and check if a user with that email…
Ajay Gupta
  • 1,285
  • 8
  • 22
-1
votes
1 answer

Add to default field selectors with python social oauth2

I have set the SOCIAL_AUTH_LINKEDIN_FIELD_OAUTH2_SELECTORS field in my Django Settings per the instructions for LinkedIn configurations here: http://psa.matiasaguirre.net/docs/backends/linkedin.html But when I run the authentication the additional…
Sean
  • 2,412
  • 3
  • 25
  • 31
-2
votes
1 answer

Django linkedin authentication programming error

When I try to authenticate with linkedin in my django app, it passes the first stage where it asks me to give permission to linkedin to access my data, but fails to authenticate after that and displays this error. I have searched through the net…
A.Sasori
  • 385
  • 3
  • 20
-2
votes
1 answer

Django rest auth with Google and VK?

I need SOCIAL REST AUTH in my Django project for SPA, and iOS app. The best library I know is django-rest-auth (for allauth), but there is no serialezers and views for rest auth with google and vk. Does anybody has view and serializers for…
1 2 3
37
38