- ru
 - Language: en
 
- Documentation version: 0.1
 
Douban¶
Douban supports OAuth 1 and 2.
Douban OAuth1¶
Douban OAuth 1 works similar to Twitter OAuth.
Douban offers per application keys named Consumer Key and Consumer
Secret. To enable Douban OAuth these two keys are needed. Further
documentation at Douban Services & API:
Register a new application at Douban API Key, make sure to mark the web application checkbox.
Fill Consumer Key and Consumer Secret values in settings:
SOCIAL_AUTH_DOUBAN_KEY = '' SOCIAL_AUTH_DOUBAN_SECRET = ''
Add
'social_core.backends.douban.DoubanOAuth'into yourSOCIAL_AUTH_AUTHENTICATION_BACKENDS.
Douban OAuth2¶
Recently Douban launched their OAuth2 support and the new developer site, you can find documentation at Douban Developers. To setup OAuth2 follow:
Register a new application at Create A Douban App, make sure to mark the web application checkbox.
Fill Consumer Key and Consumer Secret values in settings:
SOCIAL_AUTH_DOUBAN_OAUTH2_KEY = '' SOCIAL_AUTH_DOUBAN_OAUTH2_SECRET = ''
Add
'social_core.backends.douban.DoubanOAuth2'into yourSOCIAL_AUTH_AUTHENTICATION_BACKENDS.