Eleirbag89 / TelegramBotPHP

A very simple PHP Telegram Bot API for sending messages.
http://eleirbag89.github.io/TelegramBotPHP
MIT License
814 stars 343 forks source link

i cant download photo #141

Closed mehdivijeh closed 6 years ago

mehdivijeh commented 6 years ago

my code: $file_id = $message['photo'][0]['file_id']; $file = $telegram->getFile($file_id); $telegram->downloadFile($file['result']['file_path'], './product_pic.png');

and this is error error_code: 400 description: Bad Request: file id not specified

Eleirbag89 commented 6 years ago

$file_id has a value ? What's your PHP version ?

mehdivijeh commented 6 years ago

i add ['message'] at first of code and its work! $file_id = $message['message']['photo'][2]['file_id'];