tags:

views:

213

answers:

2

You can get notes using "notes_get". And you get comments using "comments_get" if you know the id of the comment. But how do you get all the comments of a note? or, actually, how do you get a list of all the comment id's posted to a note?

+1  A: 

maybe the code in Facebook Comments can help?

pageman
This thing is soooo outdated. Tried it a while back, and I'm effectively trying to write a module like this but for Drupal and using the API.
RD
@RD good for you! I'll keep looking around :P
pageman
They parse the actual HTML, rather than using the API. That approach would work, but you would have to try to constantly keep up with Facebook.
Casebash
A: 

Looking at the Facebook Graph API section on notes, I can see that there is a comments connection. Unfortunately, clicking on it provided a blank data structure. Perhaps it will be supported in the future? Looking elsewhere, it seems to be possible to comment on a "post". I don't know whether or not that includes notes? I would really like to be able to do this too, so that I could have two way sync between Wordpress and Facebook. Notably, the iPhone Facebook app doesn't support comments on notes. If it did, we would have an API that would have to be reasonably stable as otherwise they'd break their own app.

Casebash

related questions