Sample code for 30+ languages & platforms
AutoIt

Transition from Http.QuickRequest to Http.HttpNoBody

Provides instructions for replacing deprecated QuickRequest method calls with HttpNoBody.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

$oHttp = ObjCreate("Chilkat.Http")

Local $sUrl = "https://example.com/"
Local $sVerb = "DELETE"

; ------------------------------------------------------------------------
; The QuickRequest method is deprecated:

Local $oResponseObj = $oHttp.QuickRequest($sVerb,$sUrl)
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

; ...
; ...

; ------------------------------------------------------------------------
; Do the equivalent using HttpNoBody.
; Your application creates a new, empty HttpResponse object which is passed 
; in the last argument and filled upon success.

$oResponseOut = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpNoBody($sVerb,$sUrl,$oResponseOut)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf