-
Notifications
You must be signed in to change notification settings - Fork 49
Description
I'm a very beginner, I want to send a message via postman along with media and buttons,
how do I make it... please fix this code 🙏
I hope someone can help with grace for beginners like me 🙏
`// Send message, media and Button
app.post('/send-media', (req, res) => {
const number = phoneNumberFormatter(req.body.number)
const message = req.body.message;
const caption = req.body.caption;
const file = req.files.file;
const clik = req.Buttons.clik
const media = new MessageMedia(file.mimetype, file.data.toString('base64'), file.name);
const button = new Buttons(clik.body, clik.Buttons({ buttonId:'customId',buttonText:{'displayText':'button1'},type: 1 }), clik.null, clik.null)
client.sendMessage(number, media, message, button).then(response => {
res.status(200).json({
status: true,
response: response
});
}).catch(err => {
res.status(500).json({
status: false,
response: err
});
});
});`