如何在我的上传中标记朋友?
我已经尝试过了,但似乎无法正常工作。
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!");
}
})