| View previous topic :: View next topic |
| Author |
Message |
leighj
Joined: 28 Mar 2007 Posts: 1
|
Posted: Wed Mar 28, 2007 4:05 pm Post subject: Twitter |
|
|
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 |
|
| Back to top |
|
 |
xXja50nXx as a guest Guest
|
Posted: Thu Jul 19, 2007 3:12 pm Post subject: |
|
|
| Cool script, Thanks for sharing. |
|
| Back to top |
|
 |
Guest
|
Posted: Thu Jul 02, 2009 8:21 pm Post subject: |
|
|
| Code: | | curl -u username:password -d “status=Hello” http://twitter.com/statuses/update.xml |
www.twitter.com/autohotkey |
|
| Back to top |
|
 |
badmojo
Joined: 11 Nov 2005 Posts: 189
|
Posted: Sat Jul 04, 2009 11:23 am Post subject: |
|
|
| can curl handle unicode like polish characters? |
|
| Back to top |
|
 |
Guest
|
Posted: Sun Jul 05, 2009 4:20 pm Post subject: |
|
|
| 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. |
|
| Back to top |
|
 |
|