Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i use multi hashtags on facebook

I am using fb.ui to share on facebook whith a hashtag

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

How can I send 2 hashtags? I have tried each of the below but they do not work.

hashtag: '#TestHash1#TestHash1'
hashtag: '#TestHash1 #TestHash1'
hashtag: ['#TestHash1', '#TestHash1']
like image 464
luay Avatar asked Oct 30 '22 03:10

luay


1 Answers

Facebook has updated their policies. so now we can provide a Hashtag and no more.

like image 107
Thisaru Avatar answered Nov 15 '22 05:11

Thisaru