facebook fql - FQL query doesn't return the correct results -
i'm running following fql query in graph explorer: select album_object_id, object_id, aid, pid photo object_id=576544082370719
and correct results want:
{ "data": [ { "album_object_id": 520085011349960, "object_id": 576544082370719, "aid": "396713620353767_120902", "pid": "396713620353767_2121634" } ] }
however, when adding album_object_id statement, nothing returned: select album_object_id, object_id, aid, pid photo object_id=576544082370719 , album_object_id=520085011349960
{ "data": [ ] }
anyone has idea? tried report said can't reproduce https://developers.facebook.com/bugs/448684285215430
here example doesnt work supposed to, going on? select object_id, modified photo object_id=507652032628572
this gives correct result, however: select object_id, modified photo album_object_id=468672926526483 , modified>1365522434
no results on one.
found out when adding order modified desc statement, results fine, thats kind of work around well, @ least works.
Comments
Post a Comment