AutoHotkey Community

It is currently May 26th, 2012, 9:13 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 5 posts ] 
Author Message
 Post subject: Twitter
PostPosted: March 28th, 2007, 4:05 pm 
Offline

Joined: March 28th, 2007, 3:51 pm
Posts: 1
Anyone use Twitter? This is a QUICK AND SIMPLE way to post a Status...

Bound to Window - T (can be changed)
BUT you must install CURL and YES there are Windows Binaries. I installed it and my path goes to it.
Replace USERNAME:PASSWORD
Code:
#t::
InputBox, Status, Twitter, Enter Twitter Status
Run curl --basic --user USERNAME:PASSWORD --data status="%Status%" http://twitter.com/statuses/update.xml,,Hide

Since it is authenticated it does NOT use a POST method. And the output is discarded in a hidden window...
A nice quick and easy script for a quick and easy app...
http://twitter.com/leighj


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 19th, 2007, 3:12 pm 
Cool script, Thanks for sharing.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: July 2nd, 2009, 8:21 pm 
Code:
curl -u username:password -d “status=Hello” http://twitter.com/statuses/update.xml

www.twitter.com/autohotkey


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: July 4th, 2009, 11:23 am 
Offline

Joined: November 11th, 2005, 3:13 am
Posts: 202
can curl handle unicode like polish characters?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 5th, 2009, 4:20 pm 
badmojo wrote:
can curl handle unicode like polish characters?


Curl can with the appropriate encoding, I'm not sure about if Autohotkey can pass unicode text to it, though.


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 10 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group