换页的 FQL 等效项
嗨
我正在寻找 https://graph.facebook.com/coca-cola/feed 的 FQL 等价物
上面的图形 API 调用将返回大量我不需要的数据。我正在寻找 FQL 等效项以仅返回 id、from_id、from_name、message 和created_time。
请帮忙致以
最诚挚的问候...
Hi
I am looking for the FQL equlant for https://graph.facebook.com/coca-cola/feed
The above Graph API call will return lot of data which I don't need.. I am looking for the FQL equilant to return only the id, from_id, from_name, message and created_time.
Please help
Best Regards...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您应该查询的表 http://developers.facebook.com/docs/reference/ fql/流/。
不过,请求
https://graph.facebook.com/coca-cola/feed?fields=id,from_id,from_name,message,created_time
可能会更容易。不过,它返回一个错误 -from_id
和from_name
不存在,因此尝试https://graph.facebook.com/coca-cola/feed? fields=id,message,created_time
。希望有帮助。
Here's the table you should query http://developers.facebook.com/docs/reference/fql/stream/.
However, it might be easier to request
https://graph.facebook.com/coca-cola/feed?fields=id,from_id,from_name,message,created_time
. Though, it returns an error -from_id
andfrom_name
don't exist, thus tryhttps://graph.facebook.com/coca-cola/feed?fields=id,message,created_time
.Hope it helps.