我在python中使用facebook API来提取有关用户的一些信息。我需要让用户过生日,但我只能得到我朋友的生日。有没有办法让任何人获得bday或是隐私设置?
我的代码:
import facebook
token = "CAAErZAZAHDByABADxr766............................."
graph = facebook.GraphAPI(token)
profile = graph.get_object("Any_user")
print profile['birthday']
答案 0 :(得分:3)
我不熟悉Facebook API,但我不认为,除非它是公开的。隐私设置不会(或至少不应该)消失,因为您使用的是API而不是浏览器界面。