(AutoIt) Example: Http.ClearHeaders method
Demonstrates how to call the ClearHeaders method.
Also see: Chilkat Http Default and Auto-Filled Headers
Local $bSuccess = False
$oHttp = ObjCreate("Chilkat.Http")
; Add a request header.
$oHttp.SetRequestHeader "X-Something","1234"
$oHttp.SetRequestHeader "X-Example","5678"
Local $sResponseBody = $oHttp.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
; Examine the request header we just sent..
ConsoleWrite($oHttp.LastHeader & @CRLF)
ConsoleWrite("----" & @CRLF)
; Output:
; GET /helloWorld.txt HTTP/1.1
; Host: chilkatsoft.com
; Accept: */*
; Accept-Encoding: gzip
; X-Something: 1234
; X-Example: 5678
; Remove the request headers we previously added:
$oHttp.ClearHeaders
$sResponseBody = $oHttp.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
ConsoleWrite($oHttp.LastHeader & @CRLF)
; Output:
; GET /helloWorld.txt HTTP/1.1
; Host: chilkatsoft.com
; Accept: */*
; Accept-Encoding: gzip
|