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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -