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');
謝謝!
所以我將需要使用該服務先手動,然後在上面的代碼中使用響應? – Yonder 2012-04-19 09:26:16
查看我更新的答案。它與SO問題有聯繫,可以指導您完成整個過程。 – ThdK 2012-04-19 09:28:34