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.

I'm trying to find tagged fb photos of myself and/or of my friends

When I run this FQL query (which is from the facebook docs: http://developers.facebook.com/docs/reference/fql/photo_tag/)

$str_fql = "SELECT pid FROM photo_tag WHERE subject=me()";
$arr_data  = $this->facebook->api( array( 'method' => 'fql.query', 'query' => $str_fql ));
var_dump($arr_data);

it returns an empty array. However, i do have photos that i am tagged in.

any help?

share|improve this question
Query seems to work if you change "me" to a FB ID. – ldg Jun 10 '11 at 5:11

1 Answer

up vote 2 down vote accepted

Make sure you are getting user_photo_video_tags and/or user_photos extended permission when you authenticate.

share|improve this answer
Thanks @bkaid you are right! I never had those permissions. As well use: "friends_photo_video_tags" to get your friends tagged photos – dezwald Jun 10 '11 at 5:35

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.