Fql 查询返回无结果
我正在使用 C# 进行多查询。
var query1 = string.Format("SELECT uid2 FROM friend WHERE uid1 = {0}", "me()");
var query2 = string.Format("SELECT aid FROM album WHERE owner = {0}", "me()");
第一个查询工作正常并返回正常。第二个查询返回 OK,但没有数据。为什么?
I am working in C# with multi Queries.
var query1 = string.Format("SELECT uid2 FROM friend WHERE uid1 = {0}", "me()");
var query2 = string.Format("SELECT aid FROM album WHERE owner = {0}", "me()");
The first query works fine and returns ok. The second query returns OK with no data. Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您的应用程序需要“user_photos”权限才能获取该信息(来自“相册”表的数据)。
看看这个:http://developers.facebook.com/docs/authentication/permissions/
I think your app needs the "user_photos" permissions in order to get that information (data from the "album" table).
Check this out: http://developers.facebook.com/docs/authentication/permissions/