Baileys icon indicating copy to clipboard operation
Baileys copied to clipboard

Template Message is sent to myself

Open imReCoder opened this issue 1 year ago • 35 comments

Template Message is sent to myself and not to remoteJid Message is visible as received message on my side and message is not visible on remote side Message body :

const templateButtons = [
               {index: 1, urlButton: {displayText: "⭐ Star Baileys on GitHub!", url: "https://github.com/adiwajshing/Baileys"}},
               {index: 2, callButton: {displayText: "Call me!", phoneNumber: "+1 (234) 5678-901"}},
               {index: 3, quickReplyButton: {displayText: "This is a reply, just like normal buttons!", id: "id-like-buttons-message"}},
           ];
           
const templateMessage:IWhatsappTemplateMessage = {
               text: "Hi it's a template message",
               footer: "",
               templateButtons: templateButtons
           };

Message sent response :

{"key":{"remoteJid":"[email protected]","fromMe":true,"id":"BAE55AD154B05D1E"},"message":{"templateMessage":{"fourRowTemplate":{},"hydratedTemplate":{"hydratedContentText":"Hi it's a template message","hydratedButtons":[{"urlButton":{"displayText":"⭐ Star Baileys on GitHub!","url":"https://github.com/adiwajshing/Baileys"},"index":1},{"callButton":{"displayText":"Call me!","phoneNumber": "+1 (234) 5678-901"},"index":2},{"quickReplyButton":{"displayText":"This is a reply, just like normal buttons!","id":"id-like-buttons-message"},"index":3}]}}},"messageTimestamp":"1665403237","status":"PENDING"}

Button Message ,List Message works fine only Template Message problem

imReCoder avatar Oct 10 '22 12:10 imReCoder