次のようにエラーが発生しても、pyfacebookとpython sdkをインストールしました
このコードを使用する場合
import facebook
token = 'my 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
私が直面しているエラーは
graph = facebook.GraphAPI(token)
AttributeError: 'module' object has no attribute 'GraphAPI'