カスタム ボタンを使用するときに、Twitter に短縮版の URL を生成させる方法はありますか ( https://dev.twitter.com/docs/tweet-button#build-your-ownによると)。
カウンターは必要ありません。テキスト、短縮 URL、ハッシュタグを共有したいだけです。
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');
ありがとう!