使用任何一个facebook的python 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,代码中可能有语法错误。但你有主意了。