Ok, so i\'ve googled around, i\'ve found threads here on stackoverflow and i\'ve checked the official Facebook wiki and.. and what not..
I now hope that one of you g
The unofficial fork of the python sdk is still working fine for me.
To retrieve your friends, generate an access token here: https://developers.facebook.com/tools/access_token/
Limitations:
Code
import facebook token = 'your token' graph = facebook.GraphAPI(token) profile = graph.get_object("me") friends = graph.get_connections("me", "friends") friend_list = [friend['name'] for friend in friends['data']] print friend_list