Mobile app version of vmapp.org
Login or Join
Vandalay111

: Creating a form that posts to Twitter - how to get started? I'm trying to figure out how to create an HTML form that would allow a user to log in and tweet their message directly to Twitter.

@Vandalay111

Posted in: #Authentication #Twitter

I'm trying to figure out how to create an HTML form that would allow a user to log in and tweet their message directly to Twitter. What resources should I look at to get started?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Vandalay111

1 Comments

Sorted by latest first Latest Oldest Best

 

@Shelton105

<form target="_blank" name="tweet" action="https://twitter.com/share" method="get">
<input type="hidden" name="original_referer" value="http://www.yoururl.com">
<input type="hidden" name="source" value="tweetbutton">
<input type="hidden" name="url" value="http://www.yoururl.com">
<input style="width:430px; height:34px; font-size:18px" type="text" name="text" maxlength="98">

<input type="submit" value="Tweet This" />
</form>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme