defstudio / telegraph

Telegraph is a Laravel package for fluently interacting with Telegram Bots
MIT License
674 stars 116 forks source link

Save photo #535

Closed aziatdjuraev closed 7 months ago

aziatdjuraev commented 7 months ago

I have a question: How to save or receive a photo to save with yourself, sent by the user. Thank you in advance.

aziatdjuraev commented 7 months ago

I carefully read the documentation and found a way to save a photo, document, audio and video. If anyone needs it in the future, here is the link.

Specifically in my case, I solved the problem like this:

$this->bot->store($this->message->photos()->last(), 'public/images', 'yourImage.jpg');