Node Telegram Bot API return Bad Request: there is no photo in the request – Telegram API
I was wrote a Telegram bot with Nodejs. To send an image to the user I am using the following commands : bot.sendPhoto({ chat_id: msg.chat.id, caption: 'Test caption', files: { photo: '../change-db-shop-url.png' } }, function (err, msg) { console.log(err); console.log(msg);…