How to check if someone shared my page's post? Using Facebook API

半城伤御伤魂 提交于 2019-12-08 19:53:32

I have found a solution. Normal calls don't return Shared Posts' links at all. But Feed returns, so crawling feed makes my task done.

https://graph.facebook.com/me/feed/?access_token=your_access_token

Nice way but will only work in Graph API 1.0

Some test in the Graph explorer looks quite clean

https:/graph.facebook.com/me/feed/?fields=link,story,status_type&limit=100&status_type=shared_story

Now parse the link if it contains the Page ID or your domain . If the last 100 post have more than one share from the page he get ranked up or some Superpoints .

Thank you Usman for the hint in the right direction

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!