AutoIt
AutoIt
Load JSON Object from HTTP Response Body
Demonstrates how to load the HTTP response body directly into a JSON object.Chilkat AutoIt Downloads
Local $bSuccess = False
$oHttp = ObjCreate("Chilkat.Http")
$oResp = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpStr("GET","https://www.chilkatsoft.com/exampledata/sample.json","","","",$oResp)
If ($bSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
; A JSON object is JSON that begins with "{" and ends with "}"
$oJson = ObjCreate("Chilkat.JsonObject")
; If we wish to transfer (instead of copy) the JSON from the HttpResponse to the JsonObject, then add the keyword "TakeResponseBody" to UncommonOptions
; This could save memory for extremely large JSON responses.
$oResp.UncommonOptions = "TakeResponseBody"
$oResp.GetBodyJson($oJson)
$oJson.EmitCompact = False
ConsoleWrite($oJson.Emit() & @CRLF)
; Note: If UncommonOptions contained "TakeResponseBody", then the response BodyStr will now be empty:
ConsoleWrite("----" & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)