soumyadeepdas/tbl_WebBotPublic ยท Community Store Listing

Demo WebApp

ProfileTelegram
14 commands0 envUpdated 19d agoCreated Oct 27, 2025
Back to folder

commands/๐ŸŒ Make Web.js

javascript ยท 47 lines ยท click line # to share

1/**#command2name: ๐ŸŒ Make Web3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12let normal_web_url = Webapp.getUrl("normal_web");13let webapp_web_url = Webapp.getUrl("webapp_web");14let products_web_url = Webapp.getUrl("products_web");15let membership_web_url = Webapp.getUrl("membership_web");16 17Api.sendMessage({18  chat_id: chat.id,19  text: `๐Ÿ”— <b>Web Demo</b>20 21Choose the type of API endpoint you want to open:`,22  parse_mode: "HTML",23  reply_markup: {24    inline_keyboard: [25      [{26        text: "Normal web",27        url: normal_web_url28      }],29      [{30        text: "Telegrm webapp",31        web_app: {32          url: webapp_web_url33        }34      }],35      [{36        text: "Products page web (EJS)",37        url: products_web_url38      }],39      [{40        text: "Membership Checker web (EJS)",41        web_app :{42          url: membership_web_url43        }44      }],45    ]46  }47});