Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);  
share|improve this question
my understanding is that tagging still doesn't work properly - last time I tried was back in February so it might have been fixed since then; also, I believe user_photo_video_tags and friends_photo_video_tags are deprecated – scibuff Mar 16 '12 at 17:10
but no succes .... no error and no tag ... – Andryk Andrei Mar 16 '12 at 17:16
yeap, pretty much what I've seen – scibuff Mar 16 '12 at 17:16
another question, usually i create a lot of apps, and when a pp has big succes, brings to my page over 5000-10.000 facebook restrict it, why? with every app every tine, and on other pages, i see apps that brings 100.000 likes and bo restrict or ban. – Andryk Andrei Mar 16 '12 at 17:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.