diff --git a/simpleauth/handler.py b/simpleauth/handler.py index c624e2b..9f86262 100644 --- a/simpleauth/handler.py +++ b/simpleauth/handler.py @@ -462,7 +462,7 @@ def _get_facebook_user_info(self, auth_info, key=None, secret=None): """Facebook Graph API endpoint. https://graph.facebook.com/me """ - resp = self._oauth2_request('https://graph.facebook.com/me?{0}', + resp = self._oauth2_request('https://graph.facebook.com/me?fields=id,name,email,picture,link&{0} ', auth_info['access_token']) return json.loads(resp)