我正在尝试从几天开始运行此查询,它要么被绞死,要么我收到错误“发生未知错误”
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/
你们的任何帮助将不胜感激 感谢
答案 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内置了分页,因此它可以解决您的问题(尚未测试)