我尝试在Facebook API中使用标记功能,但它不起作用。
这是权限代码:
$facebook->getLoginUrl(
array(
'canvas' => 1,
'fbconnect' => 0,
'req_perms' => 'user_photos, friends_photos, publish_stream,
offline_access, user_likes, user_photo_video_tags',
'next' => $appCanvasPage.'index.php',
'cancel_url' => $appCanvasPage
)
);
这是我尝试的第一种方法:
$photoId = $userid."_".$upload_photo['id'];
$post_url = "https://graph.facebook.com/"
.$$photoId . "/tags/" . $friendid
. "?access_token=". $access_token
. "&x=" . $x_coordinate
. "&y=" . $y_coordinate
. "&method=POST";
file_get_contents($post_url);
这会返回错误:
"message": "Unsupported post request.",
"type": "GraphMethodException",
"code": 100
我尝试过第二种方法:
$fd = 'XXXX';
$tag = array(
'tag_uid' => $fd,
'x' => '10.0',
'y' => '10.0'
);
$tags = array($tag0);
$facebook->api(
array(
'method' => 'photos.addTag',
'pid' => $photoId,
'tags' => json_encode($tags)
)
);
此代码也没有标记照片。
答案 0 :(得分:1)
ok ..我发现解决方案..可以使用此代码进行标记
$tag = array(
'tag_uid' => $fb->getUser(),
'x' => 0,
'y' => 0
);
$tags[] = $tag;
$image = array(
'access_token' => $session['access_token'],
'tags' => $tags,
);
$fb->setFileUploadSupport(true);
$image['image'] = '@'.realpath($image_path);
$fb->api('/me/photos', 'POST', $image);
答案 1 :(得分:0)
photos.addTag
是一个旧的遗留REST API。你应该这样打电话:
$fd = 'XXXX';
$tag0 = array('to' => $fd, 'x' => '10.0', 'y' => '10.0');
$tags = array($tag0);
$facebook->api('/' . $photoId . '/tags', 'POST', $tags);
答案 2 :(得分:0)
$post_url = "https://graph.facebook.com/"
.$$photoId . "/tags/" . $friendid
你应该做一些调试,而不仅仅是“想知道”为什么事情会失败......
你已经写了$$ photoId,有两个$符号。这就是PHP中所谓的“变量变量”,并且会尝试访问 name 是$ photoId内容的变量 - 但我怀疑你不有一个在脚本中设置名为“$ someuserid_somepictureid”的变量。
除了给出错误之外(如果你已经将error_reporting设置为合理的东西,就像我已经告诉你的那样), if 你刚刚做了一个调试输出$ post_url你可以很容易地发现它有问题......