Ruby Requires Chilkat v11.0.0+
Ruby
WhatsApp - Upload Media
Demonstrates how to upload media to the WhatsApp Business API client. The POST body must contain the binary media data and the Content-Type header must be set to the type of the media being uploaded.Chilkat Ruby Downloads
require 'chilkat'
success = false
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = Chilkat::CkHttp.new()
# Implements the following CURL command:
# curl -X POST \
# https://your-webapp-hostname:your-webapp-port/v1/media \
# -H 'Authorization: Bearer your-auth-token' \
# -H 'Content-Type: image/jpeg'
# --data-binary @your-file-path
# Use the following online tool to generate HTTP code from a CURL command
# Convert a cURL Command to HTTP Source Code
bdRequestBody = Chilkat::CkBinData.new()
success = bdRequestBody.LoadFile("your-file-path")
if (success != true)
print "Failed to load your-file-path" + "\n";
exit
end
# Adds the "Authorization: Bearer your-auth-token" header.
http.put_AuthToken("your-auth-token")
resp = Chilkat::CkHttpResponse.new()
success = http.HttpBd("POST","https://your-webapp-hostname:your-webapp-port/v1/media",bdRequestBody,"image/jpeg",resp)
if (success == false)
print http.lastErrorText() + "\n";
exit
end
sbResponseBody = Chilkat::CkStringBuilder.new()
resp.GetBodySb(sbResponseBody)
jResp = Chilkat::CkJsonObject.new()
jResp.LoadSb(sbResponseBody)
jResp.put_EmitCompact(false)
print "Response Body:" + "\n";
print jResp.emit() + "\n";
respStatusCode = resp.get_StatusCode()
print "Response Status Code = " + respStatusCode.to_s() + "\n";
if (respStatusCode >= 400)
print "Response Header:" + "\n";
print resp.header() + "\n";
print "Failed." + "\n";
exit
end
# Sample JSON response:
# (Sample code for parsing the JSON response is shown below)
# {
# "messages": [
# {
# "id": "gBEGkYiEB1VXAglK1ZEqA1YKPrU"
# }
# ]
# }
# Sample code for parsing the JSON response...
# Use the following online tool to generate parsing code from sample JSON:
# Generate Parsing Code from JSON
i = 0
count_i = jResp.SizeOfArray("messages")
while i < count_i
jResp.put_I(i)
id = jResp.stringOf("messages[i].id")
i = i + 1
end