Hello what is the correct method to tag photos in a facebook application? I try something like this but no succes:
define('SCOP', 'publish_stream, publish_stream, photo_upload, user_photos, user_birthday, user_photo_video_tags, friends_photo_video_tags'); //permisiuni facebook
...........................................
$facebook->setFileUploadSupport(true);
$tags = array(
'tag_text' => 'ak Yip',
'to' => 100000857724948,//it's my id on facebook as a sample
'x' => 10,
'y' => 10,
);
$photo_details['tags'] = array($tags);
...........................................
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);
user_photo_video_tagsandfriends_photo_video_tagsare deprecated – scibuff Mar 16 '12 at 17:10