My facebook photo tag app was working great until today.I used Following code to tag friends in photo.
$attachment = array(
'message' => $mes,
'tags' =>
array(
array(
'tag_uid'=> $re[0],
'x' => '30',
'y' => '60',
),
array(
'tag_uid'=> $re[1],
'x' => '30',
'y' => '50',
),
array(
'tag_uid'=> $re[2],
'x' => '30',
'y' => '70',
),
array(
'tag_uid'=> $re[3],
'x' => '30',
'y' => '10',
),
array(
'tag_uid'=> $re[4],
'x' => '10',
'y' => '60',
),
array(
'tag_uid'=> $re[5],
'x' => '40',
'y' => '60',
),
array(
'tag_uid'=> $re[6],
'x' => '50',
'y' => '60',
),
array(
'tag_uid'=> $re[7],
'x' => '60',
'y' => '60',
),
array(
'tag_uid' => $re[8],
'x' => '80',
'y' => '60',
)
)
);
$facebook->setFileUploadSupport(true);
$attachment['image'] ='@'.realpath($filename);
$photo = $facebook->api('/'.$aid.'/photos', 'POST', $attachment);
But This code was not tagging friends any more.It just uploads photo. Is there any API change in facebook or any alternative working method to tag friends .thanks.