Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$friends = $facebook->api(array('method'=>'fql.query',
                                'query'=>'SELECT src_big, pid, src 
                                            FROM photo 
                                           WHERE owner = "$user_id" '));
print_r($friends)

Please advise me... I want the select to get the photos and albums and comment, recent updates.

share|improve this question

2 Answers

up vote 1 down vote accepted

To return the photos you need first to select the albums. Try it:

SELECT src_big, pid, src FROM photo WHERE aid IN (SELECT aid FROM album WHERE owner = "$user_id")
share|improve this answer
THanks..it works but when i but the coding like this ...SELECT src_big, pid, src FROM photo WHERE aid IN (SELECT aid FROM album WHERE owner = "$user_id") . Again it displays the empty array. If i put the me() instead of the $user_id. then it works for me. – ananth May 16 '11 at 10:27
@ananth can you please mail me full code for getting albums using gragh api...i have tried many ways...but my query returns only empty array .thanks in advance.jafar@masteroe.in – jack Aug 15 '12 at 6:54

In addition to the above: Permission to photos is also required: if you have only user_photos, you cannot query the friend's photos etc. So request user permissions:

"user_photos","friends_photos"

as described in http://developers.facebook.com/docs/reference/api/permissions/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.