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-allauth is a set of pluggable django apps for authentication, registration, account management as well as 3rd party (social) account authentication
0
votes
0answers
37 views
django allauth facebook local development
I'm using django-allauth for Facebook authentication in developement for a site and have set up accordingly:
within the facebook app settings on facebok:
Namespace: test_login
App Domains: blank
...
0
votes
1answer
32 views
Facebook oauth authentication is redirecting to localhost instead of to my domain
While authenticating via OAuth, Facebook is redirecting to localhost instead of to my domain. I'm using django-allauth for facebook authentication. Someone at GitHub pointed out that the error could ...
0
votes
1answer
47 views
How to create new user and new django allauth social account when given access token over api?
I have a mobile app that allows users to sign up via Facebook. Once I receive the access token from FB, I send it to the Django backend.
But then what?
Is there a method inside of ...
0
votes
0answers
30 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
1answer
649 views
How to get redirected to a popup after Facebook login
on my django app, I have a Facebook connect button (via django allauth). When I click that, the facebook dialog box appears. Now, i want that after login, the user is redirected to a popup (bootstrap ...
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 ...
0
votes
1answer
241 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
218 views
Django-allauth facebook connect JS SDK
I can successfully use django-allauth to let users login via facebook's OAuth2 mechanism. Now I'd like to enable login via facebook's JS sdk.
The docs say that
For Facebook both OAuth2 and the ...
2
votes
3answers
701 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 ...