如何在facebook批量请求中一起使用fql和graph api?
如何在 facebook 批量请求中同时使用 fql 和 graph api?我想使用 graph api 获取我的个人资料信息,并使用 fql 获取我朋友最近 30 天的帖子。
How to use fql and graph api together in facebook batch request?I want to get profile information about me using graph api and my friend's last 30 days posts using fql .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有同样的问题。虽然回答问题已经很晚了,但它会对某人有所帮助。这就是为什么回答这个问题。
//$current_user=facebook id
$objs 获取三个查询的整个结果的 json 数组。
而且它节省了很多时间。这 3 个查询总共需要 9 秒。使用多重查询需要 7 秒。对于批量请求,需要 3.6 秒。
I had same problem. Though it is very late for answering question, it will help somebody. That's why answering this question.
//$current_user=facebook id
$objs gets json array of whole result of thre queries.
And it is saving time a lot. This 3 queries individually takes total 9 seconds. With multiquery it takes 7 seconds. And with batch request it takes 3.6 seconds.