Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

django-socialauth is a social authentication/authorization mechanism for Django projects

learn more… | top users | synonyms

0
votes
0answers
13 views

Django-Social-Auth force user grant permission

I'm create and facebook app that must require publish_stream to publish some information on user's wall. But when user interact with auth dialog they have an option skipping publish on your wall with ...
0
votes
0answers
32 views

Is there any django package providing support for social auth along with the custom user model introduced in Django 1.5?

I need Facebook auth alone for now. But we may need others like twitter and google later. From my research, both django-social-auth and django-allauth, are yet to make the compatibility changes. Any ...
0
votes
0answers
31 views

Django social auth return json on succesful or failed login

I am quite new to django and I am writing an application where I want to separate the client ant the server-side as much as possible so that multiple clients can access my server-side functionality. ...
0
votes
0answers
54 views

getting facebook pages liked by a friend

I'm using Django-social-auth for facebook login and Facepy to retrieve data from facebook. Now I'm trying to get the list of all the pages liked by a user's friend. If I use: ...
0
votes
1answer
131 views

Django: allauth facebook problm

I have a login button in my site, which opens facebook login in new window, ask user to login fetch neccesary informations and immediately logout that user and close that temporary window. Problems ...
3
votes
1answer
121 views

How do I programmatically create a user with django_social_auth?

I'm writing some test scripts for a django application which relies on django_social_auth for managing user authentication and login (facebook login only). I'd like to bypass the login portion of ...
0
votes
1answer
246 views

How to populate user profile with django-allauth provider information?

I'm using django-allauth for my authentication system. I need that when the user sign in, the profile module get populated with the provider info (in my case facebook). I'm trying to use the ...
1
vote
1answer
494 views

Django-allauth No Facebook app configured: please add a SocialApp using the Django admin

I am trying to setup Django-allauth in my project. I am running into this error and am unable to fix it. Environment: Request Method: GET Request URL: `http://localhost:8000/accounts/login/` ...
0
votes
1answer
201 views

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 ...
0
votes
1answer
374 views

OAuthException exception with django-social-auth

I'm using django-social-auth to authenticate users for facebook login for my website. <a href="{% url socialauth_begin 'facebook' %}?redirect_uri={{SITE_URL}}complete/facebook/"> This ...
0
votes
1answer
397 views

How do I access the token generated using django's social auth?

I am using django's social_auth for facebook authentication. I am trying to access the token once a user is logged in using facebook so the app can do things like retrieve the user's friends and what ...
1
vote
1answer
645 views

How to login using facebook in development environment using django social-auth?

I'm using social-auth with my django web app. When I go to /login/facebook in the production environment, the user is able to login using their facebook data. However in my development environment ...
1
vote
1answer
610 views

AuthFailed with django-social-auth & Facebook authentication

I'm using django-social-auth to do Facebook server-side authentication, and I am getting this error that I've been unable to track down: AuthFailed('There was an error authenticating the app'). I do ...
0
votes
1answer
319 views

Django social_auth custom user model FacebookBackend explanation

I'm trying to use social_auth (omab) for the first time and I'm find that there is no working example how to store basic facebook user data. Authentication works and user is created without problem as ...
4
votes
1answer
256 views

How to fetch user's mobile number from facebook?

I am using django-social_auth to make users register and login via facebook. I want to access the phone number of the user. Tried searching on google and stackoverflow , but didn't find any answer. ...
1
vote
1answer
378 views

django-social-auth for Facebook is redirecting home and not logging in

I have had django-social-auth working for Google for quite some time now but am having problems with Facebook. I am at the point where clicking on the /login/facebook/ link will take me to the ...
0
votes
1answer
620 views

Django Social Auth - User is Created, Profile is Created, But User Is Not Logged In

So as the title goes, I am able to be use Facebook to create a new user and create a new profile. However, I am not being logged in. I am always redirected to /login/ (with some characters at the ...
2
votes
3answers
709 views

A simple and up-to-date way to implement Facebook login in a Django app

This issue is very common in stackoverflow, and there's a lot of different questions and answers about it, yet I couldn't find exactly what I need. First, I'd like to define exactly what I need: the ...
1
vote
0answers
230 views

Create a user with django-social-auth parameter passing access_token

How to create a user with django-social-auth parameter passing access_token? Example: django-social-auth.create_user(access_token= 'xxxxxxxxxxxxxxxx...') Is this possible? I do this because I get an ...
0
votes
1answer
1k views

Django-Social-Auth Errors

Update I tried replacing everything in my custom manager with the following: def create_user(self, username, email): return self.model._default_manager.create(username=username) And that ...
6
votes
1answer
870 views

Django: Full fledge Facebook and Twitter integration (Django-Facebook, django-social-auth, django-allauth)

Before I post my question I would like to tell you that I'm aware of few excellent django packages out there for twitter and facebook integration: Django-Facebook django-social-auth django-allauth ...
2
votes
2answers
228 views

What python library I should use for facebook OAuth and OpenGraph

I have designed a Facebook application and need to add OAuth, Open Graph for complete functionality. Considering that I know nothing about Open Graph and little JS, I'd like to use a small wrap-up ...
0
votes
1answer
167 views

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: <urlopen error Tunnel ...
4
votes
1answer
582 views

How to get rid of the #_=_ in the facebook redirect of django-social-auth?

django-social-auth redirects me to /mypage#_=_ when using the the Facebook backend. As I am working with jquery mobile on the front end, I can not accept that. I found: ...
0
votes
0answers
556 views

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 ...
0
votes
0answers
197 views

Confusion in Django-social-auth with Twitter and Facebook

I am new to the whole Openauth/OpenId thing, so please bear with me on this: I succesfully installed django-social-auth and got it running with Twitter and Facebook My questions are as follows: a. ...
0
votes
1answer
210 views

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 ...
1
vote
1answer
1k views

django-social-auth : how to get the profile pic of facebook and save it in media/mudshots/ folder

I am using from social_auth.signals import socialauth_registered for new registered user in my project. and I have noticed that when I try to sign-up on facebook to my project. my project did not get ...
0
votes
1answer
225 views

DatabaseError when using facebook login on django-social-auth

I have a django app, and would like to use django-social-auth for facebook/twitter authentication. I've installed the django-social-auth app and deployed my app on heroku. The home page shows up ...
1
vote
0answers
191 views

facebook oauthtoken in django session

Is it possible for me to store the oauth token directly into the session when a user logs into my website using fblogin Iam using django-social-auth and it stores _auth_user_id into the session and i ...
0
votes
1answer
253 views

What method to use to figure out if user is connected to facebook

I am using django-social-auth for facebook login. I am able to login user using "/facebook/login". But, I need to check if user is logged in using facebook on some other page. Is there a method in the ...
0
votes
1answer
762 views

Facebook login not working properly using django-social-auth

I'm trying to integrate facebook login on a site I'm working on, but so far, it doesn't seem to be working. I'd expect to get something similar to the usual dialog I get like what comes up at the ...
0
votes
1answer
557 views

How can I override/extend the “pipeline” flow used in django-social-auth?

This is discussed in this thread but it looks like it hasn't been documented yet. I'm ultimately trying to create the following Facebook Connect sign-up flow: User connects to Facebook (such that ...
0
votes
1answer
253 views

Determining Exact Reason for Facebook Error Code 100

I am experimenting with facebook and trying to create an event, via the Graph API. I am using django and the python-facebook-sdk from github. I can successfully post to my wall pull friends etc. I am ...
1
vote
0answers
441 views

django-socialregistration registration and login just isn't working

I'm seriously confused with getting django-socialregistration working. So my settings file: TEMPLATE_CONTEXT_PROCESSORS = ( "django.contrib.auth.context_processors.auth", ...
0
votes
1answer
457 views

Cant find facebook button using django-socialauth

i want to Login via twitter, facebook, openid, yahoo, google using a single app. so i choose django-socialauth i read this artile : django-socialauth-login-via-twitter-facebook-openid-yahoo-google/ ...
2
votes
2answers
830 views

Facebook connect button

I can't seem to find how to generate the classic Facebook Connect button: all I can find how to generate is the following: I'm using the documentation here ...