gpt4 book ai didi

python - 需要用 facebook.py 列出所有 friend

转载 作者:太空宇宙 更新时间:2023-11-03 15:20:51 25 4
gpt4 key购买 nike

我使用 facebook.py 来自: https://github.com/pythonforfacebook/facebook-sdk

我的问题是:我不知道使用 graph.get_object("me/friends") 的 next-url

graph = facebook.GraphAPI(access_token)
friends = graph.get_object("me/friends")

最佳答案

如果您在 Graph API Explorer 中输入 /me/friends ,您会看到它返回一个 JSON 文件,它只是字典和列表的组合。

例如,输出可能是:

{
"data": [
{
"name": "Foo",
"id": "1"
},
{
"name": "Bar",
"id": "1"
}
],
"paging": {
"next": "some_link"
}
}

此 JSON 文件已转换为 Python 字典/列表。在外部字典中,键 data 映射到字典列表,其中包含有关您 friend 的信息。

打印你的好友列表:

graph = facebook.GraphAPI(access_token)
friends = graph.get_object("me/friends")
for friend in friends['data']:
print "{0} has id {1}".format(friend['name'].encode('utf-8'), friend['id'])

.encode('utf-8') 是为了正确打印出特殊字符。

关于python - 需要用 facebook.py 列出所有 friend ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15234237/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com