Telegram Bot Игра не работает

Я понимаю свою ботовую телеграмму с игрой. Я написал это:

$content = file_get_contents("php://input"); $update = json_decode($content, true); if(!$update) { exit; } $chatId = isset($message['chat']['id']) ? $message['chat']['id'] : ""; header("Content-Type: application/json"); $parameters = array('chat_id' => $chatId); $parameters["method"] = "sendGame"; $parameters["game_short_name"] = "prova"; $parameters["text"] = parse_url("<my_html_5_url>"); $message = json_encode($parameters); echo json_encode($parameters); 

Мой пример кода html5:

 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title of the document</title> </head> <body> Content of the document...... </body> </html> 

Когда я вызываю игру, я вижу только изображение, вставленное Botfather, но у меня нет шансов увидеть мой html5. Где я ошибаюсь?

Related of "Telegram Bot Игра не работает"