这取决于几件事。 首先,如果页面在您控制之下,您可以让脸书提醒您新的活动 — — 他们定期发送页面活动报告。
如果页面不在您管理之下,那么您需要考虑该页面是否公开。如果它像 coca-cola-cola页面 ,那么可以随时通过这个 URL - https://graph.facebook.com/cocacola
查询数据。
{
"id": "40796308305",
"name": "Coca-Cola",
"picture": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/174560_40796308305_2093137831_s.jpg",
"link": "http://www.facebook.com/coca-cola",
"likes": 42106778,
...
}
With regard to mapping likes to certain users -
This is not possible. Only the administrators of a page can see exactly who has "liked" the page. The only way to see if a page is liked by a specific person is if that user grants an application permissions to view their "likes".
TL;DR
- You can t see who liked a page unless you administer that page.
- You can only tell if a specific user has liked a page and that requires the
user_likes
permission.