Retrieve Post Of A Facebook Page Using Facebook Api (python)
Currently, I am using https://github.com/pythonforfacebook/facebook-sdk I just picked up python not too long ago. What i need to do: Retrieve posts of a particular Facebook page. E
Solution 1:
After doing some trial and errors, i found the solution to my answer. This might not be the best solution but it fulfill my requirement.
profile = graph.get_object(targetProfile+"/statuses")
Jstr = json.dumps(profile)
JDict = json.loads(Jstr)
for i in JDict['data']:
print"message: "+i['message']
Solution 2:
The Below snippet should solve your issue regarding retrieving all the messages for posts, It uses facepy and handles paging on its own.
from facepy import GraphAPI
import json
access = '<access_token>'
graph = GraphAPI(access)
page_id= '<page_name or page_id>'
datas= graph.get(page_id+'/posts?fields=message', page=True, retry=5)
posts=[]
fordatain datas:
posts.append(data)
print posts
Post a Comment for "Retrieve Post Of A Facebook Page Using Facebook Api (python)"