如何将 FQL 结果转换为记录列表?
我想将我的 FQL 查询结果转换为记录列表,如何像这样转换我的查询。
“从流中选择评论,其中 post_id = 'Post_Id'”
我已转换为 foreach 循环,但它仍然不会得到所需的结果,所以我的问题是我想要帖子的评论列表。?
I want to Convert my FQL Query result into the List of Records how I can Convert this my Query like this.
"SELECT comments FROM stream WHERE post_id = 'Post_Id' "
I have converted into foreach loop but it will still not get desired result so my question is I want to list of comments of Post.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 http://developers.facebook.com/docs/reference/javascript/FB .api/
您可以在 http://developers.facebook.com 亲自尝试一下/工具/控制台/。只需单击示例并选择“everyone-data”并将查询更改为您的 SELECT,然后使用代码即可。
Use http://developers.facebook.com/docs/reference/javascript/FB.api/
You can try it out for yourself at http://developers.facebook.com/tools/console/. Just click on Examples and select "everyone-data" and change the query to be your SELECT, and then play with the code.