0
这是可能的吗? 例如:在脸书上的照片上制作倍数标签
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";
}
提前感谢!