Facebook 点赞请求
是否可以请求在特定时间点赞特定对象?我必须知道2011年9月30日之前的点赞数。
例如:
SELECT url, share_count, like_count,
comment_count, click_count, total_count
FROM link_stat
WHERE url="'.$url.' and date <= '2011-09-30'"
link_stat 表中是否有日期列?
Is it possible to request the likes of a particular object for a specific time? I have to know the likes till 2011-09-30.
Like:
SELECT url, share_count, like_count,
comment_count, click_count, total_count
FROM link_stat
WHERE url="'.$url.' and date <= '2011-09-30'"
Are there any date columns in the link_stat table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此类信息无法通过 facebook API 获得,但您可以将其维护在数据库中,只需每天调用并将其存储在数据库中,您将获得历史信息、为您的对象构建图表等。
此外,如果您的对象是您可以检查见解的页面、应用程序或域:
https://developers.facebook.com/docs/reference/api/insights/
将为您提供相关信息
This kind of info is not available via facebook API but you can maintain it in your database, simply make a call every day and store it in your database and you will have historical info, build graphs for your objects, etc.
Also if your object is a page, application or domain you can check insights:
https://developers.facebook.com/docs/reference/api/insights/
which will give you relevant info