2012-04-19 104 views
0

使用自定義按鈕(根據:https://dev.twitter.com/docs/tweet-button#build-your-own),有沒有辦法讓twitter生成我的網址的縮短版本?使用自定義Twitter推文按鈕自動縮短網址

我不需要任何計數器,我只是想分享一個文本,縮短的網址和一個hashtag。

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'); 

謝謝!

回答

2

你可以使用API​​來縮短你的網址。

結帳的文檔:http://dev.bitly.com/get_started.html

參見本所以用在瞭如何使用jQuery來利用bitly API的答案代碼示例問題: jQuery on the fly URL shortener

+0

所以我將需要使用該服務先手動,然後在上面的代碼中使用響應? – Yonder 2012-04-19 09:26:16

+0

查看我更新的答案。它與SO問題有聯繫,可以指導您完成整個過程。 – ThdK 2012-04-19 09:28:34