facebook-graph-api-v2.6

Getting Facebook Share, Like and Comment Counts for a Given URL with API Graph v2.6

半世苍凉 提交于 2019-12-11 00:42:09
问题 As both Legacy REST API and Facebook Query Language (FQL) will no longer be available after 7th August I am looking for an API Graph v2.6 based on alternative to: https://api.facebook.com/method/links.getStats?urls=http://www.imdb.com/title/tt2015381/&format=json https://graph.facebook.com/fql?q=SELECT url, normalized_url, share_count, like_count, comment_count, total_count,commentsbox_count, comments_fbid, click_count FROM link_stat WHERE url='http://www.imdb.com/title/tt2015381/' So far,

Facebook Graph API - access the comments and their replies with one query

∥☆過路亽.° 提交于 2019-12-07 02:49:20
问题 The following Facebook Graph API v2.6 query: /{{POST_ID}}/?fields=comments.summary(true)&access_token={{ACCESS_TOKEN}} will get the comments (with theirs IDs) for the specified Post. Then the query /{{COMMENT_ID}}/?fields=comments.summary(true)&access_token={{ACCESS_TOKEN}} will get the replies for the specified Comment. Is there a way to get both the comments and their replies for given Post with one Graph API query? 回答1: This will get u the comment replies of comments. /{{POST_ID}}/?fields

“Get Started” button does not appear for FB Messenger bot on Messenger app

﹥>﹥吖頭↗ 提交于 2019-12-05 23:17:09
For some reason, the " get started " button doesn't appear on mobile Messenger app but it works perfectly on web . I have try to delete the button and re-post it . but still have the same problem. I used node js and I followed FaceBook's documentation: facebook get started button documentation Anyone has a solution? Is it a bug? Thanks a lot in advance for your answers. There are certain conditions to seeing the Welcome Screen and the Get Started button: They are only rendered the first time the user interacts with the Page on Messenger Only admins/developers/testers of the app can see it when

Facebook Graph API - access the comments and their replies with one query

眉间皱痕 提交于 2019-12-05 07:14:18
The following Facebook Graph API v2.6 query: /{{POST_ID}}/?fields=comments.summary(true)&access_token={{ACCESS_TOKEN}} will get the comments (with theirs IDs) for the specified Post. Then the query /{{COMMENT_ID}}/?fields=comments.summary(true)&access_token={{ACCESS_TOKEN}} will get the replies for the specified Comment. Is there a way to get both the comments and their replies for given Post with one Graph API query? This will get u the comment replies of comments. /{{POST_ID}}/?fields=comments{comments}&access_token={{ACCESS_TOKEN}} You can get any sub info(from,id) of comment replies by