use*_*664 3 python facebook facebook-graph-api
使用任何针对Python的Facebook API,我试图让那些分享我的帖子的人和那些人是谁.我目前有第一部分..
>>> from facepy import *
>>> graph = GraphAPI("CAAEr")
>>> g = graph.get('apple/posts?limit=20')
>>> g['data'][10]['shares']
Run Code Online (Sandbox Code Playgroud)
这是重要的,但我想知道那些人是谁.
该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']
Run Code Online (Sandbox Code Playgroud)
这是我第一次使用Python,代码中可能存在一些语法错误.但你明白了.