Eleirbag89 / TelegramBotPHP

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

The bot keeps sending replies on Telegram iPhone #187

Closed parkho closed 4 years ago

parkho commented 5 years ago

Hello, The bot keeps sending repeated replies after last command on Telegram iPhone but on Android it doesn't. Any help is greatly appreciated. Regards

Eleirbag89 commented 4 years ago

Cuold be linked to #171. Is the problem still present ?

pablosouza10 commented 4 years ago

Yes, still present, to prevent this, I am controlling resquests by time.

Eleirbag89 commented 4 years ago

I have found a Solution: put

http_response_code(200);
fastcgi_finish_request();

At the start of your php bot file. Theese lines of code send a 200 response to Telegram before the script ends