如何在我的网站内使用 jquery 将推文发送到 twitter
有许多 API、脚本和插件可以从 Twitter 获取提要、哈希标签和推文。我喜欢用 jquery 从我的网站发送推文到 twitter
之类的东西
$('#somebutton').click( function (){
var text='some intelligent things to say';
#.twitit(text);
})
,这可能吗?
现在我使用 :
<a href="https://twitter.com/share" class="twitter-share-button" data-count="vertical">Tweet it</a></div>
但这需要页面标题将其发送到 Twitter.. 这并不是我想要的!
There is MANY API and script and plugin out there to get feed, hash tag and tweet from twitter. I like to SEND tweet TO twitter from my site with jquery
something like
$('#somebutton').click( function (){
var text='some intelligent things to say';
#.twitit(text);
})
it's it something possible ?
now i use :
<a href="https://twitter.com/share" class="twitter-share-button" data-count="vertical">Tweet it</a></div>
but that take the title of the page to send it to twitter.. not really what i want !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题所在:
您甚至可以通过以下方式动态设置它:
更新:如果您只是尝试使用自己的 Twitter 按钮,则可以简单地使用 Web 意图,这是 Twitter 表达“常规旧 URL”的奇特方式”。请参阅: https://dev.twitter.com/docs/intents
因为它是 URL 的一部分,确保对所有参数进行 urlencode。
What's wrong with:
You can even set it dynamically via:
UPDATE: If you're just trying to use your own Twitter button, you can simply use web intents, Twitter's fancy way of saying "regular old URLs". See: https://dev.twitter.com/docs/intents
Since it's part of a URL, make sure you urlencode all the parameters.
这是我找到的一些示例代码...
我还有那个丑陋的推特大按钮!
here is some sample code i have found...
I still have the big ugly twitter button !