Questions tagged [django-socialauth]

python-socialauth is the new port from django-social-auth to a more general solution for social authentication/authorization.

django-socialauth is a social authentication/authorization mechanism for Django projects. It provides user registration, login and connection using social sites credentials. The following providers are available:

Google OpenID Google OAuth Google OAuth2 Yahoo OpenID OpenID (like MyOpenID) Twitter OAuth Facebook OAuth LiveJournal OpenID Orkut OAuth LinkedIn OAuth

The projects code is hosted @ https://github.com/omab/django-social-auth

Documentation is available @ http://django-social-auth.readthedocs.org/en/latest/index.html

A Demo is available @ http://social.matiasaguirre.net/

414 questions
0
votes
2 answers

django social_auth passing extra arguments

So I have a referral url, something like http://.../ref/4Q3j9/ which when clicked takes them to a sign up page. They can signup using google account [Oauth2]. I store them in the template as a hidden variable. But when the user clicks on the google…
Saikiran Yerram
  • 2,994
  • 3
  • 17
  • 20
0
votes
1 answer

django-social-auth "UserSocialAuth.user" must be a "Trainee" instance

I'm integrating django-social-auth in my existing application. I've done everything so far the only missing thing is to integrate my user model (Trainee) witch doesn't use the auth.User model to the DSA. When I try to login I get the following…
Filipe
  • 3,398
  • 5
  • 21
  • 35
0
votes
1 answer

OAuthException exception with django-social-auth

I'm using django-social-auth to authenticate users for facebook login for my website. This correctly leads me to an auth dialog, but then when I click "Go…
mea36
  • 746
  • 2
  • 9
  • 17
0
votes
2 answers

Create a instance in sub-model from User model using Django social auth

I am using django social auth for social network login into my site and it works fine the user info is stored in the User model. But i have another model(ExtraInfo) that inherits the user model to store extra data. How do i create an new instance in…
Troy Matt
  • 35
  • 5
0
votes
1 answer

Nginx Bad Gateway with Django Social Auth and uwsgi

My site is running correctly locally (using the built in runserver), but when running with nginx and uwsgi, I'm getting a Bad Gateway (502) during the django-social-auth redirect. The relevant nginx error_log: IPREMOVED - - [11/Oct/2012:12:10:18…
Josh Smeaton
  • 47,939
  • 24
  • 129
  • 164
0
votes
1 answer

Django Social Auth not saving Twitter credentials

I've got django-social-auth working well with Facebook and Google however every time a Twitter user logs in it prompts them to authorize my app. It seems like the tokens may be expiring almost immediately. Any ideas on what might be causing this?
0
votes
1 answer

Django invitation login using only OAuth

I'm trying to create a site with invite only login. In addition the invited users can sign in only by using some OAuth login method. I'm using Django 1.4. I'm using apps github.com/lizrice/django-allauth and github.com/lizrice/django-invitation In…
0
votes
1 answer

Accessing Twitter with Django and Javascript

This is a follow up to a previous question I had posted here. Basically I've been trying to implement a way to send request to twitter oauth resources via javascript. I have a server running a Django application which uses Django-social-auth to…
ip.
  • 3,306
  • 6
  • 32
  • 42
0
votes
2 answers

Override next parameter django-social-auth to track facebook logins and new users in Google Analytics

I have been working with django only for a few months and I am modifying now a django code base made by another developer. I am trying to find a way to effectively track facebook registrations and logins in Google Analytics and a way I thought of…
0
votes
1 answer

django-social-auth error 500: Premature end of script headers: django.wsgi

I am trying to use django-social-auth in my project. It's working good on my local computer (using manage.py runserver), but fails on my hoster's (locum.ru) server(using mod_wsgi). I see this in my django logs on the server: [2012-06-26…
0
votes
1 answer

Django Social-auth returning URLError

Am using django social-auth authentication for my app.After login to facebook or twitter from my app it is returning error URLError at /complete/facebook/ Exception Value: Exception Location: …
tom joy
  • 411
  • 8
  • 22
0
votes
2 answers

Identifying the backend provider of a logged in user

With django-social-auth, is there a good way to find out the backend provider of a logged in user? Is finding the corresponding UserSocialAuth object supposedly the best way? Thanks!
Kar
  • 6,063
  • 7
  • 53
  • 82
0
votes
2 answers

django social-auth redirecting to error url

I integrate django social-auth in my app.In settings i have given AUTHENTICATION_BACKENDS,FACEBOOK_APP_ID,FACEBOOK_API_SECRET, social_auth.context_processors,SOCIAL_AUTH_PIPELINE etc. when i click on facebook login it is redirecting to facebook app…
tom joy
  • 411
  • 8
  • 22
0
votes
2 answers

Django social auth check for email ending

have one question, how to check email ending via django social auth? For example I want that to my site could connect peoples who have email with @example.com ending.
BenG
  • 401
  • 4
  • 7
  • 15
0
votes
1 answer

Django package for linking user to FB account

What is the most appropriate Django package for linking regular Django user to FB account? Scenario: User of regular Django site registers an account He logs in using plain login/password He connects his regular account to FB account and able to…
AlexA
  • 4,028
  • 8
  • 51
  • 84
1 2 3
27
28