使用任何适用于 Python 的 Facebook API,我试图获得分享我帖子的人数以及这些人是谁。我目前有第一部分..
>>> from facepy import *
>>> graph = GraphAPI("CAAEr")
>>> g = graph.get('apple/posts?limit=20')
>>> g['data'][10]['shares']
这很重要,但我想知道那些人是谁。
使用任何适用于 Python 的 Facebook API,我试图获得分享我帖子的人数以及这些人是谁。我目前有第一部分..
>>> from facepy import *
>>> graph = GraphAPI("CAAEr")
>>> g = graph.get('apple/posts?limit=20')
>>> g['data'][10]['shares']
这很重要,但我想知道那些人是谁。
该sharedposts
连接将为您提供有关帖子共享的更多信息。你必须GET
USER_ID?fields=sharedposts
。此信息不会出现在文档中。
这遵循您的代码:
# Going through each of your posts one by one
for post in g['data']:
# Getting post ID
id = post['id'] # Gives USERID_POSTID
id[-17:] # We know that a post ID is represented by 17 numerals
# Another Graph request to get the shared posts
shares = graph.get(id + '?fields=sharedposts')
print('Post' id, 'was shared by:')
# Displays the name of each sharer
print share['from']['name'] for share in shares['data']
这是我第一次使用 Python,代码中可能存在一些语法错误。但你明白了。