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?