Denedim:
$args = array(
'access_token' => $access_token,
'id' => $uid
);
$url = "https://graph.facebook.com/{$idPhoto}/tags";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
$data = curl_exec($ch);
Beni geri döndü:
{"error":{"type":"QueryParseException","message":"Unknown path components: \/tags"}}
Bu mümkün görünmüyor onun değil Facebook belgelerinde çünkü değil:
http://developers.facebook.com/docs/api#publishing
Birisi bir son yüklenen fotoğrafta bir kullanıcıyı etiketlemek mümkün olmadığını bana teyit edebilir?