Image is not getting displayed the media header template
1

created the whatsapp media header template message using the whatsapp api for resumable uploads but the image is not displaying in the media header template when checked in the whatsapp manager.

Shantanu
Asked about 2 weeks ago
Shantanu

used the below logic: fileHandle is coming from the Resumable Uploads API.

const url = https://graph.facebook.com/v19.0/${WabaID[0]}/message_templates; const mediaTemplateBody = { name: templateName, category: category.toUpperCase(), language: language, components: [ { type: "HEADER", format: "IMAGE", //mediaType.toUpperCase(), example: { header_handle: fileHandle } }, { type: "BODY", text: bodyText } ] };

April 28 at 8:51 AM