An FQL table containing counts that show how users on Facebook are interacting with a given link.
Retrieve link stats for facebook.com (Try this query):
SELECT url, normalized_url, share_count, like_count, comment_count, total_count,
commentsbox_count, comments_fbid, click_count FROM link_stat WHERE url="facebook.com"
| Indexable | Name | Type | Description |
|---|---|---|---|
| * | url | string | The URL to the Web page users can share with Facebook Share. This is the indexable field in the table, so you must specify it in your query's WHERE clause. To specify more than one URL, you must use the IN operator in the query's WHERE clause. |
| normalized_url | string | The normalized URL for the page being shared. | |
| share_count | int | The number of times users have shared the page on Facebook. | |
| like_count | int | The number of times Facebook users have "Liked" the page, or liked any comments or re-shares of this page. | |
| comment_count | int | The number of comments users have made on the shared story. | |
| total_count | int | The total number of times the URL has been shared, liked, or commented on. | |
| click_count | int | The number of times Facebook users have clicked a link to the page from a share or like. | |
| comments_fbid | int | The object_id associated with comments plugin comments for this url. This can be used to query for comments using the comment FQL table. | |
| commentsbox_count | int | The number of comments from a comments box on this URL. This only includes top level comments, not replies. |