如何使用 Facebook Graph API 执行 FQL 查询
我正在寻找一种使用新的 Open Graph API 执行 FQL(facebook 查询语言)查询的方法,但没有成功。
有谁知道我该怎么做?
通过这个优秀的例子在这里找到了答案: http://code.google.com/p/facebook-cpp-graph-接口/
I'm looking without any success for a way to execute a FQL(facebook query language) query with the new Open Graph API.
Does anyone know how I can do this?
Found the answer here with this excellent example:
http://code.google.com/p/facebook-cpp-graph-api/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是在短时间内执行多个 fql 查询的另一种方法。
//$current_user=facebook id
$objs 获取三个查询的整个结果的 json 数组。
而且它节省了很多时间。这 3 个查询总共需要 9 秒。使用多重查询需要 7 秒。对于批量请求,需要 3.6 秒。
This is another way to execute multiple fql queries in short span.
//$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.
FQL with PHP 这里我展示了如何使用 FQL。如果您仔细查看当前的 facebook api 文档,就会发现非常简单。有时最好不要阅读有关 facebook api 问题的文章并直接查看文档。
FQL with PHP here I show how to use FQL. It is very simple if you take a careful look at the current facebook api documentation. Sometimes it is better to not read articles about facebook api issues and look straight at the documentation.
以下是如何使用 Graph API 和 JavaScript 执行 FQL 查询的示例。
这假设您已经根据 Facebook 指南设置了页面,如下所示 - http://developers.facebook.com/docs/reference/javascript/
Here's an example of how to do a FQL query using the Graph API and JavaScript
This assumes you've already setup your page according to the Facebook guidelines as shown here - http://developers.facebook.com/docs/reference/javascript/
PHP解决方案:
PHP Solution:
使用 Javascript SDK,您可以通过以下方式完成此操作:
无需旧版 REST API。我看到这方面有很多混乱,Facebook 也没有说得很清楚。
Using the Javascript SDK, you can accomplish this using the following:
No legacy REST API required. I see a lot of confusion on this and Facebook hasn't made it very clear.