我正在使用fb.ui在Facebook上分享主题标签

FB.ui({
    method: 'share',
    href: url,
    hashtag: '#TestHash1'
}, function(response){
});

如何发送2个主题标签?我已经尝试了下面的每个方法,但是它们不起作用。
hashtag: '#TestHash1#TestHash1'
hashtag: '#TestHash1 #TestHash1'
hashtag: ['#TestHash1', '#TestHash1']

最佳答案

Facebook已更新了其policies。因此,我们现在可以为提供一个Hashtag ,而不再提供其他功能。

关于jquery - 我如何在Facebook上使用多个主题标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37162843/

10-10 22:49