How to get comments, comments and facebook comments for a postal URL without using fql?

I need to use facebook, share and comment count, passing the post url ("www.example.com/exampleblog") without using fql (since fql is not supported in v2.1).

I do not want below

https://graph.facebook.com/fql?q=SELECT url, share_count, like_count, comment_count, total_count,commentsbox_count, comments_fbid, click_count FROM link_stat WHERE url='http://example.example.com/' 

can anyone suggest an alternative to the above that supports api v2.1?

+6
source share
1 answer

In Graph v2.1, Facebook added a URL node to request information about any given URL. This will give you a lot of details , including the number of comments / comments .

+1
source

Source: https://habr.com/ru/post/973704/


All Articles