问题描述
我有一个与现货集成的Facebook页面,它已经在页面左侧的checkin计数器(例如:90个在这里)
现在我可以使用Facebook Graph API访问该页面Exploler如下。
在JSON格式的结果中,有如下字段:
can_post :true,
checkins:88,
type:page
这说明总数我的Facebook页面上的88张签名。
但是,我的Facebook页面上的登记柜台说,它是90.
为什么有一点页面计数器和图形API之间的差异?
感谢您的帮助。
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.
推荐答案
这些不同的数字。
- 您在Web界面中看到的是 X 人在这里 -
- 在API中公开的是 Y 签入
- The one you see in the web interface is X people were here -
- The one exposed in the API is Y checkins occurred here
如果我在某处检查并标记3个朋友,X上升4,Y上升1
If I check in somewhere and tag 3 friends, X goes up by 4, Y goes up by 1
如果我在另一个时间签到并标记同样的3个朋友, X保持不变,Y上升1
If I check in another time and tag the same 3 friends, X stays the same, Y goes up by 1
这篇关于通过Facebook Graph API发送的脸书数量不正确的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!