facebook - FQL fetch 3 photos from each album -


is there “elegant way” fetch last 3 photos each album of user? i’ve tried using multiquery, doesn’t work:

  $fqls = array(     "q1" => "select aid album owner = $page_id",     "q2" => "select src_small,created photo aid in (select aid #q1) order created desc limit 3"   ); 

with graph api, can [user_id]/albums?fields=photos.limit(3)


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -