Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 JavaScript 中的 FQL 向 Facebook 查询信息?如果是这样,我该怎么做?任何人都有如何在 JavaScript 中使用 FQL 的示例?
您真正需要做的就是在方法中指定 FQL:
FB.api({ method: 'fql.query', query: 'FQL query goes here' },function(response) { // callback code goes here });