https://graph.facebook.com/PHOTO_ID/tags/user1,user2,user3,etc
实际上,我正在寻找替代方案:
$friends = json_decode($facebook->api('/me/friends'), true);
$friends = $friends['data'];
foreach($friends as $friend) {
$id = $friend['id'];
$name = $friend['name'];
echo 'User='.$name.' state='.(PhotoTag($photo_id, $id) ? 'ok' : 'failed')."\r\n";
}
提前致谢!