开发者

FacebookDesktop.fqlQuery does not work when trying to retrieve users photos

开发者 https://www.devze.com 2023-01-23 07:52 出处:网络
When attempting use the the Adobe GraphAPIDesktop library for use with Adobe Flex and AIR I can login to Facebook and retireve wall posts etc ok using FQL or Graph API calls.When attempting to retriev

When attempting use the the Adobe GraphAPIDesktop library for use with Adobe Flex and AIR I can login to Facebook and retireve wall posts etc ok using FQL or Graph API calls. When attempting to retrieve users photos I can only get tagged photos when using "me/photos". I am trying to use FQL whcih should work, but when using:

var query:String = "SELECT pid, aid, owner, src, src_big, src_small, link, caption, created, modified FROM photo WHERE aid IN ( '1622751608028', '1207785754141' ) ";

FacebookDesktop.fqlQuery(query, getPhotos2);

Only an empty OBject is returned from FB?开发者_运维问答

Hope someone can help

Chris


I realised I needed to include the session id in this fql as I was using JSON loader's in the last version of my app. The fql situated above was within a JSON loader having already sent the session id to FB.

0

精彩评论

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