简体   繁体   中英

Error: 400: Bad Request: there is no photo in the request

I use telegraf and when send photo by url become such problem but when I use local photo(../img.jpg) it is okey. Code:

 bot.hears(/\/pic/, ctx=> { let photo = 'https://img-9gag-fun.9cache.com/photo/azmpDRN_460s.jpg'; bot.telegram.sendPhoto(chatId, {source: photo}, {caption: "Hello"}); });

I need to change 'source' to 'url':

 bot.hears(/\/pic/, ctx=> { let photo = 'https://img-9gag-fun.9cache.com/photo/azmpDRN_460s.jpg'; bot.telegram.sendPhoto(chatId, {url: photo}, {caption: "Hello"}); });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM