当前位置:  开发笔记 > 编程语言 > 正文

如何在python中找到facebook上的朋友的名字

如何解决《如何在python中找到facebook上的朋友的名字》经验,为你挑选了1个好方法。

我已经尝试过这段代码在python上找到facebook上的朋友的名字,但它不起作用

import facebook

token='my token'

graph= facebook.GraphAPI(token)

profile=graph.get_object("me")  #extracting your own profile

friends=graph.get_connections("me","friends")['data']

friend_list=[friend['name'] for friend in friends]

print friend_list

错误:SyntaxError:调用'print'时缺少括号



1> tabassum..:

试试这个 :)

token = 'mytoken'

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

推荐阅读
小妖694_807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有