fql.multiquery returning empty array
问题 I'm am trying to query all the photo albums of a page and get each albums cover photo. Below is the code I have that returns an empty result. I am able to make both the queries separately without the problem, so it is not a permissions issue. $album_fql = "SELECT aid, owner, name, object_id, cover_pid, cover_object_id FROM album WHERE owner = 'xxxxxxx'"; $albumpic_fql = "SELECT pid, src_small FROM photo WHERE pid IN (SELECT cover_pid FROM #query1)"; $album_param = array( 'method' => 'fql