Facebook and twitter share for mobile web

前端 未结 4 2273
执笔经年
执笔经年 2021-01-30 09:24

Is there a special url for sharing to Facebook and Twitter for mobile? Or are they the same as those from websites?

Using



        
4条回答
  •  一个人的身影
    2021-01-30 10:14

    Twitter - This is how I solved the tweet by url for all devices/browsers issue:

    http://twitter.com/intent/tweet?text= + encodeURIComponent(tweet);
    

    encodeURIComponent - is a built in javascript function, explained here.

    The 'http://mobile.twitter.com/home?status=' is not supported, and you will get encoding issues when twitter requests a login.

    Facebook - For facebook sharing I used Facebook API example

提交回复
热议问题