[Vuejs]-Twitter intent share japanese text not working in IE11

0👍

Finally The issue fixed. I have encoded text also like URL and its working in IE11 also. So I use encodeURIComponent('Japanese text') like below & then working

https://twitter.com/intent/tweet?text=encodeURIComponent('ドキドキしたい15才】 さんにおすすめのマンガは 「トレース 科捜研法医研究員の追想」 あなたも診断してみる? ⇒')&hashtags=hello&url=encodeURIComponent('https://google.com')

0👍

you need to %-Encode your URL to UTF8. IE 11 does not do this.
Here’s a relevant SO question:
Why Internet Explorer doesn't url-encode the urls?

Leave a comment