https://github.com/codesyntax/cssocialprofile
https://github.com/codesyntax/cssocialprofile
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/codesyntax/cssocialprofile
- Owner: codesyntax
- Created: 2012-11-08T15:40:45.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-04-24T18:48:21.000Z (about 2 years ago)
- Last Synced: 2025-01-25T07:27:23.471Z (over 1 year ago)
- Language: Python
- Size: 113 KB
- Stars: 0
- Watchers: 8
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
CS SOCIALPROFILE
================
Based on `django-socialprofile `_ and adapted by `Code Syntax `_
CONFIGURATION
=============
Just write this in your settings.py file:
SOCIAL_AUTH_PIPELINE = (
'social_auth.backends.pipeline.social.social_auth_user',
'social_auth.backends.pipeline.associate.associate_by_email',
'social_auth.backends.pipeline.user.get_username',
'social_auth.backends.pipeline.user.create_user',
'social_auth.backends.pipeline.social.associate_user',
'social_auth.backends.pipeline.user.update_user_details',
'social_auth.backends.pipeline.social.load_extra_data',
'cssocialprofile.pipeline.extra_values.twitter_extra_values',
'cssocialprofile.pipeline.extra_values.facebook_extra_values',
'cssocialprofile.pipeline.extra_values.openid_extra_values',
)