This is the way I am currently fetching the /me object:
/me
self.facebook_user = facebook.GraphAPI(access_token).get_object(\'me\')
But
You can pass in extra query parameters using **args:
graph = facebook.GraphAPI(access_token) profile = graph.get_object('me') args = {'fields' : 'id,name,email', } profile = graph.get_object('me', **args)