![]() |
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
(Go) WhatsApp - Change a User PasswordDemonstrates how to change the password for a WhatsApp Business API user account. Note: This example requires Chilkat v11.0.0 or greater. For more information, see https://developers.facebook.com/docs/whatsapp/api/users/manage
success := false // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http := Http_Ref.html">chilkat.NewHttp() // 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" // } json := JsonObject_Ref.html">chilkat.NewJsonObject() json.UpdateString("password","new-password") // Adds the "Authorization: Bearer your-auth-token" header. http.SetAuthToken("your-auth-token") sbRequestBody := StringBuilder_Ref.html">chilkat.NewStringBuilder() json.EmitSb(sbRequestBody) resp := HttpResponse_Ref.html">chilkat.NewHttpResponse() success = http.HttpSb("PUT","https://example.com/v1/users/username",sbRequestBody,"utf-8","application/json",resp) if success == false { fmt.Println(http.LastErrorText()) http.DisposeHttp() json.DisposeJsonObject() sbRequestBody.DisposeStringBuilder() resp.DisposeHttpResponse() return } sbResponseBody := StringBuilder_Ref.html">chilkat.NewStringBuilder() resp.GetBodySb(sbResponseBody) jResp := JsonObject_Ref.html">chilkat.NewJsonObject() jResp.LoadSb(sbResponseBody) jResp.SetEmitCompact(false) fmt.Println("Response Body:") fmt.Println(*jResp.Emit()) respStatusCode := resp.StatusCode() fmt.Println("Response Status Code = ", respStatusCode) if respStatusCode >= 400 { fmt.Println("Response Header:") fmt.Println(resp.Header()) fmt.Println("Failed.") http.DisposeHttp() json.DisposeJsonObject() sbRequestBody.DisposeStringBuilder() resp.DisposeHttpResponse() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() return } // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "users": [ // { // "username": "username" // } // ] // } // Sample code for parsing the JSON response... var username *string = new(string) i := 0 count_i := jResp.SizeOfArray("users") for i < count_i { jResp.SetI(i) username = jResp.StringOf("users[i].username") i = i + 1 } http.DisposeHttp() json.DisposeJsonObject() sbRequestBody.DisposeStringBuilder() resp.DisposeHttpResponse() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.