1

如何在我的上传中标记朋友?

我已经尝试过了,但似乎无法正常工作。

 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!");
                    }
   })
4

1 回答 1

0

参数标签必须是数组,把标签做成数组,标签里放更多的值:

var标签= [{“tag_uid”:“abcdef”,“x”:“100”,“y”:“100”},{“tag_uid”:“uvwxyz”,“x”:“100”,“y” : "100"}];

于 2018-01-05T06:10:09.657 回答