如何在上传中标记朋友?
我试过这个,但似乎没有正常工作。
var tags = "{'tag_uid' : 10000,'x' : 100,'y': 100}";
FB.api('me/photos', 'post', {
message: 'MyMessage',
status: 'success',
url: 'picture.png',
tags: tags
}, function (response) {
if (!response || response.error) {
alert("Could not upload. " + response.error);
} else {
alert("Yihad!");
}
})
答案 0 :(得分:0)
参数标记必须是数组,make标记为数组,在标记中放入更多值:
var tags = [{“tag_uid”:“abcdef”,“x”:“100”,“y”:“100”},{“tag_uid”:“uvwxyz”,“x”:“100”, “y”:“100”}];