Fql query returns with no results
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?
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/
精彩评论