Facebook fql查询获取朋友共享的链接不工作

时间:2011-03-04 17:14:30

标签: facebook facebook-graph-api facebook-fql

我正在尝试从几天开始运行此查询,它要么被绞死,要么我收到错误“发生未知错误”

select title from link where owner in ( select uid2 from friend where uid1 = me())

基本上我试图找到朋友分享的所有链接 - 不是我朋友喜欢的页面 - 我知道我可以从page_fan表中获取该信息

我在这里测试查询

http://developers.facebook.com/docs/reference/rest/fql.query/

你们的任何帮助将不胜感激 感谢

2 个答案:

答案 0 :(得分:4)

我能够通过在上面的查询

中添加LIMIT子句来解决这个问题

select title from link where owner in ( select uid2 from friend where uid1 = me()) limit 100

希望有人帮助!!!!

答案 1 :(得分:0)

您也可以尝试使用Graph-API的“链接”连接(记录为here)。 Graph-API内置了分页,因此它可以解决您的问题(尚未测试)

  1. 吸引所有朋友 - https://graph.facebook.com/me/friends
  2. 为每位朋友提供所有“链接”连接 - https://graph.facebook.com/FRIEND_ID/links