Sample code for 30+ languages & platforms
AutoIt

WhatsApp - First Login

Log in the very first time to get your authentication token. The new login/password is passed in the JSON body of the request.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

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

$oHttp = ObjCreate("Chilkat.Http")

; Implements the following CURL command:

; curl -k -X POST https://your-webapp-hostname:your-webapp-port/v1/users/login \
;   -H 'Content-Type: application/json' \
;   --user 'admin:secret' \
;   -d '{"new_password" : "new-password"}'

$oHttp.Login = "admin"
$oHttp.Password = "secret"

; The following JSON is sent in the request body.

; {
;   "new_password": "new-password"
; }

$oJson = ObjCreate("Chilkat.JsonObject")
$oJson.UpdateString("new_password","new-password")

$oResp = ObjCreate("Chilkat.HttpResponse")
$bSuccess = $oHttp.HttpJson("POST","https://your-webapp-hostname:your-webapp-port/v1/users/login",$oJson,"application/json",$oResp)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$oResp.GetBodySb($oSbResponseBody)
$oJResp = ObjCreate("Chilkat.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
$oJResp.EmitCompact = False

ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oJResp.Emit() & @CRLF)

Local $iRespStatusCode = $oResp.StatusCode
ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode >= 400) Then
    ConsoleWrite("Response Header:" & @CRLF)
    ConsoleWrite($oResp.Header & @CRLF)
    ConsoleWrite("Failed." & @CRLF)
    Exit
EndIf

; Sample JSON response:
; (Sample code for parsing the JSON response is shown below)

; {
;   "users": [
;     {
;       "token": "eyJhbGciOHlXVCJ9.eyJ1c2VyIjoNTIzMDE2Nn0.mEoF0COaO00Z1cANo",
;       "expires_after": "2018-03-01 15:29:26+00:00"
;     }
;   ]
; }

; Sample code for parsing the JSON response...

Local $sToken
Local $sExpires_after

Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("users")
While $i < $iCount_i
    $oJResp.I = $i
    $sToken = $oJResp.StringOf("users[i].token")
    $sExpires_after = $oJResp.StringOf("users[i].expires_after")
    $i = $i + 1
Wend