(Visual FoxPro) WhatsApp - Delete Media
Demonstrates how to delete media previously uploaded to the WhatsApp Business API client Note: This example requires Chilkat v11.0.0 or greater. For more information, see https://developers.facebook.com/docs/whatsapp/api/media#delete
LOCAL lnSuccess
LOCAL loHttp
LOCAL loResp
LOCAL lnRespStatusCode
lnSuccess = 0
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
loHttp = CreateObject('Chilkat.Http')
* Implements the following CURL command:
* curl -X DELETE \
* https://your-webapp-hostname:your-webapp-port/v1/media/media-id \
* -H 'Authorization: Bearer your-auth-token'
* Use the following online tool to generate HTTP code from a CURL command
* Convert a cURL Command to HTTP Source Code
* Adds the "Authorization: Bearer your-auth-token" header.
loHttp.AuthToken = "your-auth-token"
loResp = CreateObject('Chilkat.HttpResponse')
lnSuccess = loHttp.HttpNoBody("DELETE","https://your-webapp-hostname:your-webapp-port/v1/media/media-id",loResp)
IF (lnSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loResp
CANCEL
ENDIF
lnRespStatusCode = loResp.StatusCode
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode <> 200) THEN
? "Response Header:"
? loResp.Header
? "Response Body:"
? loResp.BodyStr
? "Failed."
RELEASE loHttp
RELEASE loResp
CANCEL
ENDIF
? "Success."
RELEASE loHttp
RELEASE loResp
|