如何将照片作为 facebook 中未标记的页面获取?
$feedURL = "https://graph.facebook.com/" . $this->user . "/albums?access_token=" . $this->access_token;
$albumData = json_decode(file_get_contents($feedURL));
foreach ($albumData->data as $album) {
$url = "https://graph.facebook.com/" . $album->id . "/photos?access_token=" . $this->access_token;
$photo = json_decode(file_get_contents($url));
foreach ($photo->data as $_) {
// Here I do not know how to identify the not tagged photos
}
}