有没有办法让Twitter在使用自定义按钮时生成我的网址的缩短版本(根据:https://dev.twitter.com/docs/tweet-button#build-your-own)。
我不需要任何计数器,我只想分享文本,缩短网址和标签。
var twUrl = 'http://twitter.com/share?count=none&text=' + encodeURIComponent(text) + '&url=' + url + '&hashtags=' + encodeURIComponent(hashtags);
window.open(twUrl, 'sharer', 'toolbar=0,status=0,width=650,height=254');
谢谢!
答案 0 :(得分:2)
您可以使用有点的API来缩短网址。
查看文档:{{3}}
参见这个问题,在答案中有一个代码示例,介绍如何使用jquery来使用bitly API: http://dev.bitly.com/get_started.html