import facebook
token = 'your token'
graph = facebook.GraphAPI(token)
profile = graph.get_object("me")
friends = graph.get_connections("me", "friends")
方法get_connections()中的第二个参数是连接的名称,我找到了图形api(http://facebook-sdk.readthedocs.org/en/latest/api.html)的文档,但是我无法获得如何获得包含所有名称的列表的信息图中存在的连接。
谢谢!
答案 0 :(得分:0)
始终使用官方API参考,所有现有连接都在其中:https://developers.facebook.com/docs/graph-api/reference
例如:https://developers.facebook.com/docs/graph-api/reference/user/
(向下滚动到" Edges")