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'