Post
Topic
Board Bitcoin Discussion
Re: Bitcoin Exchange Watcher program [Open source] (autoit)
by
Alex-Z
on 11/06/2011, 19:47:34 UTC
V 1.4.1.1 has been released. Check the first post for change details and a new screenshot.  Cool

Regarding adding balances though, at this time I am unaware of any way to "post" information via AutoIt3. This would be required to make the API login to receive information.

You can,

Something like :
Code:
#include
#include

$Header = "Content-Type: application/x-www-form-urlencoded"
$Host = "www.website.com"
$File = "/whatever.php"
$URL = "http://" & $Host & $File
$PostData = "name=steve"



$Socket = _HTTPConnect($Host)
_HTTPPost($Host, $File, $Socket, $PostData)
$recv = _HTTPRead($Socket,0)
MsgBox(0,"","BODY: "&$recv&" ERROR: "&@error)
_HTTPClose($Socket)