php - Facebook api. How I can get all nottagged photo my Profile? -
how photos page in facebook not tagged?
$feedurl = "https://graph.facebook.com/" . $this->user . "/albums?access_token=" . $this->access_token; $albumdata = json_decode(file_get_contents($feedurl)); foreach ($albumdata->data $album) { $url = "https://graph.facebook.com/" . $album->id . "/photos?access_token=" . $this->access_token; $photo = json_decode(file_get_contents($url)); foreach ($photo->data $_) { // here not know how identify not tagged photos } }
Comments
Post a Comment