![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Tcl) WhatsApp - Change a User PasswordDemonstrates how to change the password for a WhatsApp Business API user account. For more information, see https://developers.facebook.com/docs/whatsapp/api/users/manage
load ./chilkat.dll # This example assumes the Chilkat API to have been previously unlocked. # See Global Unlock Sample for sample code. set http [new_CkHttp] # Implements the following CURL command: # curl -X PUT https://example.com/v1/users/username \ # -H "Authorization: Bearer your-auth-token" \ # -d '{"password": "new-password"}' # The following JSON is sent in the request body. # { # "password": "new-password" # } set json [new_CkJsonObject] CkJsonObject_UpdateString $json "password" "new-password" # Adds the "Authorization: Bearer your-auth-token" header. CkHttp_put_AuthToken $http "your-auth-token" set sbRequestBody [new_CkStringBuilder] CkJsonObject_EmitSb $json $sbRequestBody # resp is a CkHttpResponse set resp [CkHttp_PTextSb $http "PUT" "https://example.com/v1/users/username" $sbRequestBody "utf-8" "application/json" 0 0] if {[CkHttp_get_LastMethodSuccess $http] == 0} then { puts [CkHttp_lastErrorText $http] delete_CkHttp $http delete_CkJsonObject $json delete_CkStringBuilder $sbRequestBody exit } set sbResponseBody [new_CkStringBuilder] CkHttpResponse_GetBodySb $resp $sbResponseBody set jResp [new_CkJsonObject] CkJsonObject_LoadSb $jResp $sbResponseBody CkJsonObject_put_EmitCompact $jResp 0 puts "Response Body:" puts [CkJsonObject_emit $jResp] set respStatusCode [CkHttpResponse_get_StatusCode $resp] puts "Response Status Code = $respStatusCode" if {$respStatusCode >= 400} then { puts "Response Header:" puts [CkHttpResponse_header $resp] puts "Failed." delete_CkHttpResponse $resp delete_CkHttp $http delete_CkJsonObject $json delete_CkStringBuilder $sbRequestBody delete_CkStringBuilder $sbResponseBody delete_CkJsonObject $jResp exit } delete_CkHttpResponse $resp # Sample JSON response: # (Sample code for parsing the JSON response is shown below) # { # "users": [ # { # "username": "username" # } # ] # } # Sample code for parsing the JSON response... set i 0 set count_i [CkJsonObject_SizeOfArray $jResp "users"] while {$i < $count_i} { CkJsonObject_put_I $jResp $i set username [CkJsonObject_stringOf $jResp "users[i].username"] set i [expr $i + 1] } delete_CkHttp $http delete_CkJsonObject $json delete_CkStringBuilder $sbRequestBody delete_CkStringBuilder $sbResponseBody delete_CkJsonObject $jResp |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.