2014年8月30日 星期六

使用 Facebook OpenID 登入網站

1. 建立一個 Facebook APP, 可得到 Client ID、Client Secret
https://developers.facebook.com/apps/

2. Settings -> Advanced -> Valid OAuth redirect URIs 填入授權成功後的返回網址


facebook = OAuth2Service(name='facebook',
                         authorize_url='https://graph.facebook.com/oauth/authorize',
                         access_token_url='https://graph.facebook.com/oauth/access_token',
                         client_id=config.get('FACEBOOK', 'client_id'),
                         client_secret=config.get('FACEBOOK', 'client_secret'),
                         base_url='https://graph.facebook.com/',
                         )

https://github.com/a0726h77/opensourcefeeds.tw/blob/master/wsgi/app/controllers/facebook.py

沒有留言:

張貼留言