如何在 Facebook 照片上标记朋友 通过 Graph API 上传照片
<?php
require_once 'facebook.php';
require_once 'config.php';
error_reporting(0);
if (isset($_GET['code'])){
header("Location: http://apps.facebook.com/your_perfect_couple/");
exit;
}
$fb = new Facebook(array(
'appId' => $appid,
'secret' => $appsecret,
'cookie' => true,
'fileUpload' => true
));
$me = null;
$user = $fb->getUser();
if($user) {
try {
$me = $fb->api('/me');
} catch(FacebookApiException $e) {
error_log($e);
}
}
$permsneeded='publish_stream,user_photos,photo_upload';
if ($me){}
else {
$loginUrl = $fb->getLoginUrl(array(
'scope' => $permsneeded,
));
echo "
<script type='text/javascript'>
window.top.location.href = '$loginUrl';
</script>
";
exit;
}
if(isset($_GET['signed_request'])) {
$fb_args="signed_request=". $_REQUEST
['signed_request']; }
//we start
$appname=$me[name];
$appid=$me[id];
echo "<h1>Whom Can You Make a Perfect Couple With?</h1></br></br>";
$appname_user = $appname;
try {
$friends = $fb->api('/me/friends?fields=picture,name,id');
}catch(FacebookApiException $e) {
error_log($e);
}
$num_friends = count($friends[data]);
$selected_friend= mt_rand(1,$num_friends);
$f_name= $friends[data][$selected_friend][name];
$f_id = $friends[data][$selected_friend][id];
$appname_frnd=$f_name;
$base = imagecreatefromjpeg('base.jpg');
$white = ImageColorAllocate($base, 100,130,255);
$font = 'ARIAL.TTF';
$font2='Cacophony Loud.ttf';
imagettftext($base, 50, 0, 30, 90, $white, $font2, $appname_user);
imagettftext($base, 50, 0, 80, 260, $white, $font2, $appname_frnd);
// Output and free memory
// header('Content-type: image/jpg');
$image="final/final_".$appid.".jpg";
imagejpeg($base,$image);
echo "<img src='$image' />";
//We end
//upload image
$message = 'Wohh, I cant believe , I Can make a Perfect Couple With '.$appname_frnd.' :P http://apps.facebook.com/your_perfect_couple/ ';
try {
$ret_obj = $fb->api('/me/photos', 'POST', array(
'source' => '@' . $image,
'message' => $message,
)
);
} catch(FacebookApiException $e) {
$login_url = $fb->getLoginUrl( array(
'scope' => 'photo_upload'
));
echo 'Please <a href="' . $login_url . '">login.</a>';
error_log($e->getType());
error_log($e->getMessage());
}
?>
我正在制作 facebook 应用程序,上传形成的图像.. 一切都很酷.. 但我没有得到任何东西来标记随机的人,我正在将该名称附加到该图像上...
只需告诉我如何在照片上标记一个人:)
请告诉我如何在此代码中执行此操作:)
<?php
require_once 'facebook.php';
require_once 'config.php';
error_reporting(0);
if (isset($_GET['code'])){
header("Location: http://apps.facebook.com/your_perfect_couple/");
exit;
}
$fb = new Facebook(array(
'appId' => $appid,
'secret' => $appsecret,
'cookie' => true,
'fileUpload' => true
));
$me = null;
$user = $fb->getUser();
if($user) {
try {
$me = $fb->api('/me');
} catch(FacebookApiException $e) {
error_log($e);
}
}
$permsneeded='publish_stream,user_photos,photo_upload';
if ($me){}
else {
$loginUrl = $fb->getLoginUrl(array(
'scope' => $permsneeded,
));
echo "
<script type='text/javascript'>
window.top.location.href = '$loginUrl';
</script>
";
exit;
}
if(isset($_GET['signed_request'])) {
$fb_args="signed_request=". $_REQUEST
['signed_request']; }
//we start
$appname=$me[name];
$appid=$me[id];
echo "<h1>Whom Can You Make a Perfect Couple With?</h1></br></br>";
$appname_user = $appname;
try {
$friends = $fb->api('/me/friends?fields=picture,name,id');
}catch(FacebookApiException $e) {
error_log($e);
}
$num_friends = count($friends[data]);
$selected_friend= mt_rand(1,$num_friends);
$f_name= $friends[data][$selected_friend][name];
$f_id = $friends[data][$selected_friend][id];
$appname_frnd=$f_name;
$base = imagecreatefromjpeg('base.jpg');
$white = ImageColorAllocate($base, 100,130,255);
$font = 'ARIAL.TTF';
$font2='Cacophony Loud.ttf';
imagettftext($base, 50, 0, 30, 90, $white, $font2, $appname_user);
imagettftext($base, 50, 0, 80, 260, $white, $font2, $appname_frnd);
// Output and free memory
// header('Content-type: image/jpg');
$image="final/final_".$appid.".jpg";
imagejpeg($base,$image);
echo "<img src='$image' />";
//We end
//upload image
$message = 'Wohh, I cant believe , I Can make a Perfect Couple With '.$appname_frnd.' :P http://apps.facebook.com/your_perfect_couple/ ';
try {
$ret_obj = $fb->api('/me/photos', 'POST', array(
'source' => '@' . $image,
'message' => $message,
)
);
} catch(FacebookApiException $e) {
$login_url = $fb->getLoginUrl( array(
'scope' => 'photo_upload'
));
echo 'Please <a href="' . $login_url . '">login.</a>';
error_log($e->getType());
error_log($e->getMessage());
}
?>
I am making facebook application which uploads the image formed ..
everything is cool ..
but i am not getting anything to tag the randon person, i am attaching the name on that image ...
just tell me how to tag a person on a photo :)
please tell me how to do this in this code :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许这些链接之一可以帮助您:
如何使用 Facebook Graph API 标记照片中的用户?
https://developers.facebook.com/docs/reference/api/photo/ =>标签=>创造
Maybe one of these links can help you:
How can I tag a user in a photo using the Facebook Graph API?
https://developers.facebook.com/docs/reference/api/photo/ => tags => create
是的,我很确定这不起作用,你只是一种“无效内容”或类似的错误;除非图形 API 已更新,否则无法通过 API 添加照片标签。您唯一能做的就是上传图像,添加“标签”按钮并将用户重定向到 Facebook 上的图像,在那里他们可以手动标记它,例如这里:http://o2-academy.vccphub.com/snapbooth.php/snapbooth/image/2012-01-21-032244-o2ac1-1740164044-8972579
yeah, I'm pretty sure that doesn't work, you just a sort of "invalid content" or similar error; Unless there has been an update to graph API is it NOT possible to add photo tags via the API. The only thing you can do is upload the image, add a "tag" button and redirect the user to the image on Facebook where they can tag it manually, such as here: http://o2-academy.vccphub.com/snapbooth.php/snapbooth/image/2012-01-21-032244-o2ac1-1740164044-8972579