(MFC) WhatsApp - Logout
Demonstrates the /v1/users/logout endpoint to logout of the WhatsApp Business API Client. Logging out revokes the authentication token. For more information, see https://developers.facebook.com/docs/whatsapp/api/users/logout
See Also: Using MFC CString in Chilkat
#include <CkHttp.h>
#include <CkHttpResponse.h>
void ChilkatSample(void)
{
CkString strOut;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
// Implements the following CURL command:
// curl -X POST https://your-webapp-hostname:your-webapp-port/v1/users/logout \
// -H "Authorization: Bearer your-auth-token"
// Adds the "Authorization: Bearer your-auth-token" header.
http.put_AuthToken("your-auth-token");
CkHttpResponse *resp = http.QuickRequest("POST","https://your-webapp-hostname:your-webapp-port/v1/users/logout");
if (http.get_LastMethodSuccess() == false) {
strOut.append(http.lastErrorText());
strOut.append("\r\n");
SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
return;
}
strOut.append("Response body:");
strOut.append("\r\n");
strOut.append(resp->bodyStr());
strOut.append("\r\n");
SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
}
|