开发者

Fql query returns with no results

开发者 https://www.devze.com 2023-03-01 02:09 出处:网络
I am working in C# with multi Queries. var query1 = string.Format(\"SELECT uid2 FROM friend WHERE uid1 = {0}\", \"me()\");

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/

0

精彩评论

暂无评论...
验证码 换一张
取 消