I am working on a website with the ability to share Twitter for each specific product.
I followed the twitter API instructions for sharing tweets and everything works fine except for custom text display. For example, I want the user to tweet as follows: "Do you think I should buy this? Http: //url.etc @mywebsite"
but all i get when custom tweets is link:
http: //url.etc
This is the code:
<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
<a target="_blank" href="https://twitter.com/share" data-url="http://bit.ly/twitter-api-announce" data-via="testtest" data-text="What do you think? Should I buy this? " data-count="none" data-counturl="http://groups.google.com/group/twitter-api-announce" >TWITTER</a>
It seems that the problems are related to the text-to-text parameter.
Any experience on this? Ideas? Thanks
source
share