Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Twitter


  • Please log in to reply
4 replies to this topic
leighj
  • Members
  • 1 posts
  • Last active: Mar 28 2007 02:51 PM
  • Joined: 28 Mar 2007
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
#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

xXja50nXx as a guest
  • Guests
  • Last active:
  • Joined: --
Cool script, Thanks for sharing.

  • Guests
  • Last active:
  • Joined: --
curl -u username:password -d “status=Hello” http://twitter.com/statuses/update.xml
<!-- w -->www.twitter.com/autohotkey<!-- w -->

badmojo
  • Members
  • 204 posts
  • Last active: Jul 23 2014 01:39 AM
  • Joined: 11 Nov 2005
can curl handle unicode like polish characters?

  • Guests
  • Last active:
  • Joined: --

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.