What do you mean by nothing happens? Do you get taken to FB?

Here's what I have in my setup which may help:

The template link looks like this:

<a class="btn btn-primary" href="{% url 'social:begin' 'facebook'
%}">Facebook</a>

Make sure you have the following line in your urls.py:

url('', include('social.apps.django_app.urls', namespace='social'))

settings.py:

SOCIAL_AUTH_USER_FIELDS = ['email']
SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True
SOCIAL_AUTH_FACEBOOK_KEY = 'your_key'
SOCIAL_AUTH_FACEBOOK_SECRET = 'your_secret'
SOCIAL_AUTH_FACEBOOK_SCOPE = ['email']
SOCIAL_AUTH_ENABLED_BACKENDS=('facebook', 'google')
SOCIAL_AUTH_PROTECTED_FIELDS = ['email']
SOCIAL_AUTH_ADMIN_USER_SEARCH_FIELDS = ['first_name', 'last_name', 'email']

AUTHENTICATION_BACKENDS = (
    'social.backends.facebook.FacebookOAuth2',
    'social.backends.google.GoogleOAuth2',
    'social.backends.twitter.TwitterOAuth',
    'django.contrib.auth.backends.ModelBackend',
)

Add 'social.apps.django_app.default', to INSTALLED_APPS

Use https://github.com/omab/python-social-auth and follow installation
instructions from it. You'll need to setup your FB app as well.

I think that's all you need.

Good luck man.



On 13 May 2015 at 04:13, Fellipe Henrique <[email protected]> wrote:

> Just  to complement the previous mail,  normal user (django user) like
> super-user create using syncdb, works fine!
>
> I'm using django 1.8.
>
> T.·.F.·.A.·.     S+F
> *Fellipe Henrique P. Soares*
>
> e-mail: > echo "lkrrovknFmsgor4ius" | perl -pe \
> 's/(.)/chr(ord($1)-2*3)/ge'
> *Blog: http://fhbash.wordpress.com/ <http://fhbash.wordpress.com/>*
> *GitHub: https://github.com/fellipeh <https://github.com/fellipeh>*
> *Twitter: @fh_bash*
>
> On Tue, May 12, 2015 at 3:09 PM, Fellipe Henrique <[email protected]>
> wrote:
>
>> Hello,
>>
>> I'm trying to use Django-AllAuth social login...
>>
>> I have a custom user profile and custom usermanage [1]
>>
>> But, when I click on html template facebook link, anything happen!  with
>> username, works fine.
>>
>> Here is my settings [2]
>>
>> My settings is wrong? any idea why this problem happens?
>>
>> Thanks,
>> regards
>>
>>
>> [1] - https://gist.github.com/fellipeh/fe2deae4854072b0cb3d
>> [2] - https://gist.github.com/fellipeh/033fcde17c9771dfb1b2
>>
>> T.·.F.·.A.·.     S+F
>> *Fellipe Henrique P. Soares*
>>
>> e-mail: > echo "lkrrovknFmsgor4ius" | perl -pe \
>> 's/(.)/chr(ord($1)-2*3)/ge'
>> *Blog: http://fhbash.wordpress.com/ <http://fhbash.wordpress.com/>*
>> *GitHub: https://github.com/fellipeh <https://github.com/fellipeh>*
>> *Twitter: @fh_bash*
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAF1jwZHCBfJsu8dCHk%3DeoPuTCPC9Jskxk16fbGR_W7DNyC8QRQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAF1jwZHCBfJsu8dCHk%3DeoPuTCPC9Jskxk16fbGR_W7DNyC8QRQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHqTbjn%2B1F-fRqx4qhD-X5%3Dm%3D-KWcumJkr2JNgU5pi7negDt8A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to