#include <ie.au3>
$oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1")
$oHTTP.Option(4) = 13056 ;忽略错误标志
$oHTTP.Option(6) = True;是否接收重定向地址信息
$oHTTP.SetTimeouts(30000, 30000, 30000, 30000);超时时间设置
$oie = _IEAttach("www.autoitx.com", "URL")
ConsoleWrite($oie.document.cookie)
$oHTTP.Open('get', 'http://www.autoitx.com/memcp.php', False)
$oHTTP.setRequestHeader("Content-Type", 'application/x-www-form-urlencoded')
$oHTTP.setRequestHeader("Cookie", 'oie.document.cookie')
$oHTTP.send()
ConsoleWrite(BinaryToString($oHTTP.responseBody))
这样没成功,有大侠成功吗???相反把WinHttpRequest的cookie给ie使用,如何实现呢? |