Alexander Tipugin
Alexander Tipugin
Same here. Works only with `Prepared(true)` turned on.
Any progress on it? Still getting this warning :(
This is what i was looking for :) Get well soon!
@ivanovaleksey hey! I agree, it shouldn't behave this way. Need to be improved
It would be great!
I'm not sure how to handle it. Resend message with new chat_id? What if you store your chat ids somewhere in db? In this case you need to handle it...
You can use `certificate: Faraday::UploadIO.new('/path/to/cert')` param for `set_webhook` method (see here: https://core.telegram.org/bots/api#setwebhook).
Looks like your file is too large (according `413` error code). Telegram has [file size limitations](https://core.telegram.org/bots/api#senddocument) (50mb per file). Anyway, following code works just fine for me: ``` ruby bot.api.send_document(chat_id:...
@MaG21 `#listen` method is just for convenience and can be easily replaced with your own loop with custom logic, signal handling etc. What's why `#fetch_updates` method was extracted (https://github.com/atipugin/telegram-bot-ruby/commit/dea1617d7d09b009fba875373fba4ac74c082202) and...
Hi @antondgx, Yes, [web apps are supported](https://github.com/atipugin/telegram-bot-ruby/blob/master/lib/telegram/bot/types/inline_keyboard_button.rb#L10)