(AutoIt) Load JSON Array from HTTP Response Body
Demonstrates how to load the HTTP response body directly into a JsonArray.
Note: This example requires Chilkat v11.0.0 or greater.
Local $bSuccess = False
$oHttp = ObjCreate("Chilkat.Http")
$oResp = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpStr("GET","https://www.chilkatsoft.com/exampledata/sampleArray.json","","","",$oResp)
If ($bSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
; A JSON array is JSON that begins with "[" and ends with "]"
$oJarr = ObjCreate("Chilkat.JsonArray")
; If we wish to transfer (instead of copy) the JSON from the HttpResponse to the JsonArray, then add the keyword "TakeResponseBody" to UncommonOptions
; This could save memory for extremely large JSON responses.
$oResp.UncommonOptions = "TakeResponseBody"
$oResp.GetBodyJarr($oJarr)
ConsoleWrite($oJarr.Emit() & @CRLF)
; Note: If UncommonOptions contained "TakeResponseBody", then the response BodyStr will now be empty:
ConsoleWrite("----" & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)
|