如何在facebook照片上标记人物?

时间:2012-06-27 18:04:13

标签: javascript facebook-apps

我们开发了一个应用程序,可以创建一个由五个朋友组成的jpg。我们需要应用程序标记照片中的人物,但无法正常工作。代码似乎是有效的,因为我们没有得到任何错误。

var tagdata= new Array;

tag1['tag_uid'] =Lamigos[0];
tag1['x'] =41;
tag1['y'] =373;

tag2['tag_uid'] =Lamigos[1];
tag2['x'] =172;
tag2['y'] =373;

tag3['tag_uid'] =Lamigos[2];
tag3['x'] =302;
tag3['y'] =373;

tag4['tag_uid'] =Lamigos[3];
tag4['x'] =100;
tag4['y'] =436;

tag5['tag_uid'] =Lamigos[4];
tag5['x'] =100;
tag5['y'] =567;


tag['data']=tagdata;
tagdata[0]=tag1;
tagdata[1]=tag2;
tagdata[2]=tag3;
tagdata[3]=tag4;
tagdata[4]=tag5;


   FB.api('/me/photos', 'post', {
    message:'Ahora puedes...',
    url:"http://www.xxxxxxx.com"+imgfin,
    tags:tag
   }, function(response){

      if (!response || response.error) {
        alert('Error al compartir tu lista');
      } else {
        vercapas(6);
  document.getElementById("simgfin").src=imgfin;
  document.getElementById("botcompartir").innerHTML="<a name='fb_share' type='button_count' href='http://www.facebook.com/sharer.php?u=http://www.xxxxxxxx.com" + imgfin + "&t=Estos son mis patas más patas'>Compartir</a>";
      }
   }); 

1 个答案:

答案 0 :(得分:1)

发布到/ me /照片时,

https://developers.facebook.com/docs/reference/api/user/#photos并未表示接受tags参数。

我猜您必须在发布照片后添加标签 - 请参阅此处:https://developers.facebook.com/docs/reference/api/photo/#tags