我有这个代码发布到用户的墙上:
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)
});
});
答案 0 :(得分: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);
}
});
}
});
答案 1 :(得分:1)
你无法在同一个电话中上传和标记好友,你必须先上传,然后标记好友。如果朋友还有更多,那么你必须使用循环逐个标记它们,否则它将不起作用,
答案 2 :(得分: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');
}
});
}
});
}