I have a Facebook page integrated with spot and it has checkin counter(ex: 90 were here)
in the left of the page.
Now I can access the page using facebook Graph API Exploler like follows.
https://graph.facebook.com/page_id
In the result of JSON format, there is the field as follows.
"can_post": true,
"checkins": 88,
"type": "page"
This says there are total 88 checkins on my spot of the Facebook page.
But, the checkin counter in my Facebook page says, it's 90.
Why there is a little difference between page counter and graph API?
Thank you for your help.
相关问题
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- facebook error invalid key hash for some devices
- gactions CLI crashes on Windows when uploading goo
相关文章
- json_encode 没有把数组转为json
- Livy Server: return a dataframe as JSON?
- Windows - Android SDK manager not listing any plat
- Unexpected end of JSON input from an ajax call
- Facebook login for group members
- How do I do a nested list (array) of schema refere
- iconv() Vs. utf8_encode()
- Convert C# Object to Json Object
Those are different numbers.
If I check in somewhere and tag 3 friends, X goes up by 4, Y goes up by 1
If I check in another time and tag the same 3 friends, X stays the same, Y goes up by 1
For anyone still having the same problem. The checkins counter is deprecated as are checkins themselves, see http://developers.facebook.com/docs/reference/api/checkin/
Luckily, via FQL you can now get the
were_here_count
field of a page instead. This field shows exactly the same # users as is shown on Facebook itself.