Estoy tratando de ejecutar mi juego dentro del navegador de la aplicación Telegram.
A continuación se muestra mi código hasta ahora
bot.action('wheeloffortune', ctx => { bot.telegram.sendGame(ctx.chat.id, 'wheeloffortune'); }) bot.on("callback_query", function (query) { let gameurl = "https://dazzling-ritchie-f3ad20.netlify.app/?id="+query.id; bot.answerCallbackQuery({ callback_query_id: query.id, url: gameurl }); }); bot.on("inline_query", function(iq) { bot.answerInlineQuery(iq.id, [ { type: "game", id: "0", game_short_name: 'wheeloffortune' } ] ); });Lo que espero : después de hacer clic en el botón 'Jugar rueda de la fortuna', el juego debería abrirse en la vista web.
Lo que realmente está sucediendo :
esta imagen sigue renderizándose
cualquier consejo es apreciado