How to get photo in real size (not thumb) from telegram?

后端 未结 2 1871
慢半拍i
慢半拍i 2021-01-29 07:47

I am using getFile() and then download photo with a link like https://api.telegram.org/file/bot/. But I received only his thumbnails

2条回答
  •  伪装坚强ぢ
    2021-01-29 08:36

    if you use PHP: you can write this line for full size:

    $file_id = $updates['message']['photo'][1]['file_id'];

    and this line for thumb:

    $file_id = $updates['message']['photo'][0]['file_id'];

提交回复
热议问题