2016-07-11 79 views
1

我一直在試圖找到如何做幾個小時... Here's我的報價機器。我試圖得到它的鳴叫報價顯示點擊Twitter的按鈕時,但現在我可以把它做的是去普通Twitter共享頁面通過驗證碼:鳴叫報價內容點擊

$('#tweet').click(function(){ 
     window.open("https://twitter.com/share"); 
    }); 

謝謝!

+0

除了打開Twitter網址之外,您還有什麼其他嘗試? https://dev.twitter.com/web/intents可能是有趣的。正如https://dev.twitter.com/web/tweet-button/parameters可以解釋你在URL中需要什麼參數。 –

回答

1

您可以撥打下面的鏈接,在window.open聲明:

window.open("https://twitter.com/intent/tweet?text="+ $('#main-quote').text() +"&via=your-app-name&original_referer=your-url"); 

其中:

  • text是文本發佈和
  • via是您要選購的Twitter個人資料在鳴叫中通知

你在行動小提琴分叉到:https://jsfiddle.net/claykaboom/qyqykdvm/

更多信息在:https://dev.twitter.com/web/tweet-button/web-intent

+0

非常感謝,完美的作品:) –