我想编写一个 python 程序来检索所有 Facebook 页面和他们的喜欢计数,以便找到最喜欢的 Facebook 页面。问题是我无法找到如何获取所有 Facebook 页面(不仅仅是我喜欢的页面,而是所有 Facebook 页面)我已经搜索过这个问题,但直到现在我还没有找到解决方案。我发现我只能获得我喜欢的页面,而不是所有 Facebook 页面。谁能告诉我如何解决这个问题?为了获取所有 Facebook 页面,我必须在查询中输入什么特定字段?
import facebook
import json
def pp(o):
print json.dumps(o, indent=1)
ACCESS_TOKEN = ''#access token here
g = facebook.GraphAPI(ACCESS_TOKEN)
pp(g.get_object(#what to put here)) # I did not know what to put here in order to get all Facebook pages