I am trying to tagging one of my friend after I upload photo use facebook api, here is my code
// PHOTO LINK
$pic_imgname = "sample.jpg";
$creation = realpath("creation/$pic_imgname");
$facebook->setFileUploadSupport("http://".$_SERVER['SERVER_NAME']);
$photo = $facebook->api("/me/photos", 'POST',
array(
'source' => '@' . $creation,
'message' => 'test sample',
'tag_uid' => /*HERE IS MY FRIEND UID*/,
'x' => '10',
'y' => '10'
)
);
but it doesnt tag and only upload to my application's album. what is wrong with my code?
UPDATE
I found the alternavite using facebook graph
$source = $path.'/'.$pic_imgname;
if (isset($source)) {
try {
$access_token = $facebook->getAccessToken();
$graph_url = "https://graph.facebook.com/me/photos?"
. "url=" . urlencode($source)
. "&message=" . urlencode($message)
. "&method=POST"
. "&access_token=" . $access_token;
$response = file_get_contents($graph_url);
$json = json_decode($response);
$argstag = array('to' => $uid);
$argstag['x'] = 40;
$argstag['y'] = 40;
$datatag = $facebook->api('/' . $json->id . '/tags', 'post', $argstag);
} catch (FacebookApiException $e) {
error_log('Could not post image to Facebook.');
}
}