Facebookでのロギングにpythonソーシャル認証を使用して小さなプロジェクトを作成しました。リンクでpythonソーシャル認証の例を参照しました。ユーザー名を取得できます。しかし、のrequest.name
ような他のデータを取得するにはどうすればよいですか評価されるfirst_name
last_name
email
ビューのコード例は次のとおりです。
def home(request):
context = RequestContext(request,
{'request': request,
'user': request.user})
return render_to_response('home.html',
context_instance=context)