Reputation: 2265
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?
Upvotes: 2
Views: 8900
Reputation: 52073
Make sure you are getting user_photo_video_tags and/or user_photos extended permission when you authenticate.
Upvotes: 2