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.

I am making an facebook app upload image and tag friend in the image. I want to use fql query 10 friends to tag. But my app can tag only one friend. Uploading image is ok.

I dont know why my app can tag only one friend. Please show me errors. Thank you so much.

Here is my source:

$facebook->setFileUploadSupport(true);

//Create an album
$album_details = array(
           'message'=> $album_message,
           'name'=> $album_name
);
$create_album = $facebook->api('/me/albums', 'post', $album_details);

//Get album ID of the album you've just created
$album_uid = $create_album['id'];

//GET FRIENDS LIST
$friendsidData=$facebook->api(array( 'method' => 'fql.query','access_token' =>  $access_token, 'query' => 'SELECT uid FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) LIMIT 10'));

$photo_details = array(
       'message'=> $photo_message,
       'tags'=>  array(makeTagArray($friendsidData)),

);

$photo_details['image'] = '@' . realpath($file);

$upload_photo = $facebook->api('/'.$album_uid.'/photos?access_token='.$facebook->getAccessToken(), 'post', $photo_details);


function makeTagArray($arrUser) {
    foreach($arrUser as $item) {

        $tags[] = array('tag_uid'=>$item['uid'], 'x'=>$x,'y'=>$y);
        $x+=20;
        $y+=20;

    }
        $tags = json_encode($tags);
        return $tags;
}

PERMISSION i set: 'publish_stream,status_update,user_photos'

share|improve this question

closed as not a real question by CBroe, Jay Gilford, Anand, Emil, Andrea Ligios Mar 12 at 14:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Try Below code it's work for me

$friends_id = array('100003723431277','100001986954710','100003972713220');

                  $tags = array();

                  foreach ($friends_id as $id)
                  {
                    $tag = array();

                    $tag['tag_uid'] = $id;

                    $tag['x'] = rand() % 100;

                    $tag['y'] = rand() % 100;

                    $tags[] = $tag;
                  }

                  $argstag = array(
                        'tags' => $tags
                  );


                    try 
                    {
                        $res = $facebook->api('/'.$json->id.'/tags', 'POST', $argstag);
                    }   catch (FacebookApiException $e) {

                        Mage::getSingleton('core/session')->addError($post_process_view->render(POST_PROCESS_TEMPLATES,'post_process-error.phtml'));

                   } 
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.