2

我有这个发布到用户墙上的代码:

FB.api('/me/photos', 'post', {
        message:'photo description',
        url:imgURL        
    }, function(response){
        console.log(response);
        if (!response || response.error) {
            console.log(response);
        }else{
            FB.api(response.id+'/tags/me', {
                to: $("#recipientID").val()
            }, function(response){
                console.log(response)
            });
        }
    }); 

第一部分完美运行我只是不知道如何将朋友标记到其中,我的标记调用给了我一个空数组。Facebook 文档真的很难理解,而且它并没有给出任何如何做到这一点的例子,所以请不要只给我他们文档的链接,因为我已经阅读了他们所拥有的任何相关内容,但我仍然可以'不要这样做。

也试过这个没有成功:

FB.api('/me', function(response){
                var userId = response.id;
                FB.api('/'+response.id+'/tags/'+userId, {
                    to: $("#recipientID").val()
                }, function(response){
                    console.log(response)
                });
            }); 
4

3 回答 3

3

我终于设法破解了它,这与我使用的调用不同:

FB.api('/me/photos', 'post', {
    message:'Checking tags',
    url:imgURL
}, function(response){
    if (!response || response.error) {
       console.log(response);
    }else{
      //tags friend     
      var postId = response.id;
      FB.api(postId+'/tags?to='+friendID, 'post', function(response){
         if (!response || response.error) {
            console.log(response);
         }
      });
    }
}); 
于 2012-06-01T04:51:40.047 回答
1

你不能在同一个通话中上传和标记朋友,你必须先上传,然后标记朋友。如果有更多的朋友,那么你必须使用循环一个一个地标记它们,否则它将不起作用,

于 2012-06-01T04:28:49.777 回答
1

我从这篇文章中的代码开始,在一张照片中标记多个人。它在我的代码库中工作,我试图提炼它,但它可能需要更多的工作,不确定。认为它可能会帮助尝试做同样事情的人。

如果有人有任何改进的想法,我会全力以赴:

//Set empty array of Friend ID's
var friendIds = []

//Get friend ID's
getFriendById = function(id) {
    var i, len;
    id = id.toString();
    for (i = 0, len = friends.length; i < len; i += 1) {
        if (friends[i].id === id) {
            return friends[i];
        }
    }

    friendIds.push(friends);
};

var postToWall = function(){

    //Assign Friends to variables
    var name1 = getFriendById(friendIds[0]);
    var name2 = getFriendById(friendIds[1]);
    var name3 = getFriendById(friendIds[2]);

    //Set empty array for tags  
    var tags = [];

    //Loop through friends and make an array ready for posting
    $.each(selectfriends, function(i,friend){
        var new_tag = {tag_uid: friend};
        tags.push(new_tag);
    })

    //Post photo to wall
    FB.api('/me/photos', 'post', {
        message:'Enter custom message',
        url: 'link/to/photo.jpg'
    }, function(response){
        console.log(response)
        if (!response || response.error) {
            console.log('error');
        } else {
            //Tag Friends
            var postId = response.id;
            //Use stringify to send the array in string to facebook
            FB.api(postId+'/tags?tags='+JSON.stringify(tags), 'post', function(response){
                if (!response || response.error) {
                    console.log('error');
                }
            });
        }
    });
}
于 2013-03-20T02:28:30.920 回答