I am trying to get some statistics for a facebook page using publicly available information - particularly how many people have ever been tagged at that place.
I used FQL to retrieve the # of checkins for a specific page_id
- which works fine. Query: SELECT checkins FROM page WHERE page_id=PAGEID
.
However I noticed that the # of checkins is a different number than the number that is listed on the facebook page ie. "4,600 Were Here".
So I have two questions.
- If somebody checks into a place and tags 4 other friends there with them, does that only increment the field "checkins" by 1 or by 5?
- Is it possible to get the number of individual people that "were here" (ie. the number that is listed on the facebook page)?