I'm trying to get comments to a set of posts on a particular FB web page using Python and fbconsole (in this case, I'm getting posts from the Diane Rehm Show):
import sys
import fbconsole
from datetime import datetime
fbconsole.AUTH_SCOPE=['publish_stream','publish_checkins','read_stream']
#(note: I'm actually using an app with an app_id and app-secret)
#fbconsole.APP_ID=<appid>
#fbconsole.APP_SECRET=<appsecret>
fbconsole.authenticate()
posts = fbconsole.fql("SELECT post_id, created_time, message, actor_id, action_links, attachment, comments FROM stream WHERE (source_id = 64779275389 AND actor_id=64779275389) ORDER BY created_time DESC LIMIT 100")
for post in posts:
if (' @ 10 (ET)' in post['message'].encode('ascii', 'ignore')):
print("{0}: {2} -1}\n".format(datetime.fromtimestamp(post['created_time']),post['message'].encode('ascii', 'ignore'),post['actor_id']))
comments = post['comments']
commentlist= comments['comment_list']
print(commentlist)
print("\n\n======================\n")
if ( comments['count'] > 1):
tpost=post['post_id']
print tpost
query="SELECT fromid, username, text, time, comments FROM comment WHERE post_id ={}".format(tpost)
truecommentlist=fbconsole.fql(query)
This gives an error:
Traceback (most recent call last):
File "<stdin>", line 12, in <module>
File "/usr/local/lib/python2.7/dist-packages/fbconsole.py", line 318, in fql
return json.load(urllib2.urlopen(url))['data']
File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "/usr/lib/python2.7/urllib2.py", line 400, in open
response = meth(req, response)
File "/usr/lib/python2.7/urllib2.py", line 513, in http_response
'http', request, response, code, msg, hdrs)
File "/usr/lib/python2.7/urllib2.py", line 438, in error
return self._call_chain(*args)
File "/usr/lib/python2.7/urllib2.py", line 372, in _call_chain
result = func(*args)
File "/usr/lib/python2.7/urllib2.py", line 521, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 400: Bad Request
I've tried just using a known post_id and that gives the same error.
Can anyone help me determine why I cannot pull comments from the comment using the 'main' post_id?