Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
I think I figured out my problem. The last query needed quotes around it:query="SELECT fromid, username, text, time, comments FROM comment WHERE post_id =\'{}\'".format(tpost) – Kurt Peters Jul 26 '12 at 2:54
2  
Please consider posting your solution as an answer and accepting it. Otherwise, this question will continue to show as an unanswered question. – Lenna Jul 26 '12 at 4:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.