アップロードで友達にタグを付けるにはどうすればよいですか?
これを試してみましたが、正しく動作していないようです。
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!");
}
})