Description
Description
Im using the most recent version, simply trying to send a PDF and a PNG file but can't.
Error when sending: {
me: {
id: {
server: 'c.us',
user: '55XXXXXXXXXXX',
_serialized: '55XXXXXXXXXXX@c.us'
},
displayName: null,
verifiedName: null,
searchName: null,
pushname: null,
notifyName: null,
isBusiness: null,
formattedUser: null,
tag: '1695338692',
eurl: 'https://pps.whatsapp.net/v/t61.24694-24/378017733_688551789817191_5553061098892593864_n.jpg?ccb=11-4&oh=01_AdRxE89sQZIwBXhuyihyIzMQUJGYMRWTmF8NVFR8xG3rdw&oe=6519FD11&_nc_sid=000000&_nc_cat=105',
previewEurl: 'https://pps.whatsapp.net/v/t61.24694-24/378017733_688551789817191_5553061098892593864_n.jpg?stp=dst-jpg_s96x96&ccb=11-4&oh=01_AdSRVgL78g82By2vk_Y-6F4V6QqFlJHd2gnUMSBVm_eJrA&oe=6519FD11&_nc_sid=000000&_nc_cat=105',
fullDirectPath: '/v/t61.24694-24/378017733_688551789817191_5553061098892593864_n.jpg?ccb=11-4&oh=01_AdRxE89sQZIwBXhuyihyIzMQUJGYMRWTmF8NVFR8xG3rdw&oe=6519FD11&_nc_sid=000000&_nc_cat=105',
previewDirectPath: '/v/t61.24694-24/378017733_688551789817191_5553061098892593864_n.jpg?stp=dst-jpg_s96x96&ccb=11-4&oh=01_AdSRVgL78g82By2vk_Y-6F4V6QqFlJHd2gnUMSBVm_eJrA&oe=6519FD11&_nc_sid=000000&_nc_cat=105',
filehash: 'rJj3z/t3AECqnoiHKVU6pofHVLyA52ldSF+Gg//1UlA=',
stale: false,
eurlStale: false,
timestamp: 1695339379959,
hostRetryCount: 0
},
to: {
server: 'c.us',
user: '55XXXXXXXXXXX',
_serialized: '55XXXXXXXXXXX@c.us'
},
erro: true,
text: 'Error to processFiles',
status: 404
}
Your Code
I tried with local file:
await client.sendImage(message.from, "21577.jpg", "21577.jpg", "TesteCaption")
.then((result) => {
console.log("Result: ", result); //return object success
}).catch((erro) => {
console.error("Error when sending: ", erro); //return object error
});
and with URL
await client.sendImage(message.from, "https://img.ibxk.com.br/materias/5866/21577.jpg", "image.jpg", "TesteCaption")
.then((result) => {
console.log("Result: ", result); //return object success
}).catch((erro) => {
console.error("Error when sending: ", erro); //return object error
});
both ways return me the same error.
erro: true,
text: 'Error to processFiles',
status: 404
I can send messages normally, the error is when sending files or images, how can i solve it?