skip to Main Content

Telegram Bot Callback-Query not sent

I've created 2 Inline-Button and I want to evaluate the callback_data. But unfortunately, the callback_data is not sent. <?php $bot_token = 'There is no Token seen'; // Telegram bot token $url = "https://api.telegram.org/bot$bot_token/sendMessage"; $content = file_get_contents('php://input'); $update = json_decode($content, TRUE);…

VIEW QUESTION
Back To Top
Search