blob: f51d5ef52b0f3a3f2d497125d0096de9a8fbc884 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- coding: utf-8 -*-
"""
97suifang local settings
"""
## social accounts settings
SOCIALOAUTH_SITES = (
('weibo', 'socialoauth.sites.weibo.Weibo', '新浪微博', {
'redirect_uri': 'http://www.97suifang.com/account/oauth/weibo',
'client_id': 'weibo_app_id',
'client_secret': 'weibo_app_secret',
}
),
)
|