I am using a javascript encoded twitter share link like this:
‘http://twitter.com/intent/tweet?url=’ + encodeURIComponent(location.protocol + “//” + location.host + “/” + queryString)
However as I can successfully see the fully decoded address with query string on the twitter address bar, the tweet box itself only contains the link till the first ampersand http://www.mysite.com/?param1=true … How can i get the tweet box to show the url with full query string?
Any help will be appreciated!