Sample code for 30+ languages & platforms
AutoIt

HTTP POST JSON

See more HTTP Examples

Demonstrates how to send a JSON POST and get the JSON response.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

; This requires the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code

$oHttp = ObjCreate("Chilkat.Http")

Local $sJsonText = "{""user"":""doctoravatar@penzance.com"",""forecast"":7,""t"":""vlIj"",""zip"":94089}"

; IMPORTANT: Make sure to change the URL, JSON text,
; and other data items to your own values.  The URL used
; in this example will not actually work.

$oResp = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpStr("POST","https://json.penzance.org/request",$sJsonText,"utf-8","application/json",$oResp)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

; Display the JSON response.
ConsoleWrite($oResp.BodyStr & @CRLF)