Comments associated with one or more fb:comments as represented in FQL.
To read the comment table you need
access_token for public dataaccess_token to access private field: user_likesComments from the comments plugin on this page: (Try this query)
SELECT post_fbid, fromid, object_id, text, time \
FROM comment \
WHERE object_id IN \
(SELECT comments_fbid \
FROM link_stat \
WHERE url ='http://developers.facebook.com/docs/reference/fql/comment/')
All the replies for each comment from the comments plugin on this page: (Try this query)
SELECT comments \
FROM comment \
WHERE object_id IN \
(SELECT comments_fbid \
FROM link_stat \
WHERE url ='http://developers.facebook.com/docs/reference/fql/comment/')
| Indexable | Name | Type | Description |
|---|---|---|---|
| * | xid | string | The external ID of the fb:comments being queried. You can specify more than one XID. |
| * | object_id | string | The object_id of an object on Facebook. This can be a video, note, link, photo, or photo album. Note that for photos and albums, the object_id must be queried from the photo and album FQL tables. Note that in the photo and album tables, object_id is a different field from pid and aid. You must specify either an xid or an object_id. |
| * | post_id | string | The ID of the post in the stream. |
| fromid | int | The user submitting a comment. | |
| time | int | A Unix timestamp associated with the creation time of a comment. | |
| text | string | The text of a comment. | |
| id | int | A unique ID for a given XID for each comment. | |
| username | string | The user name that a user entered when they posted a comment. In these cases, the | |
| reply_xid | string | The target XID for Feed stories generated by the user; applications can retrieve comments made to that story by calling this XID. | |
| post_fbid | string | The object_id of this comment. This can be used for querying likes for this comment or replies to this comment if the comment came from the comments plugin. | |
| app_id | int | The application id associated with this comment. | |
| likes | int | The number of likes for this comment. | |
| comments | comments | The replies to this comment. | |
| can_like | boolean | If the current user is able to like this comment. | |
| user_likes | boolean | If the current user liked this comment. | |
| text_tags | array | Array of mention objects for each object tagged in the comment. | |
| is_private | boolean | If this comment is private. |