Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
spbRusty authored Aug 26, 2024
1 parent 28aa313 commit 58fffc5
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,20 @@
<script src="particles.js"></script>
<script src="script.js" defer></script>
<script>
function sendHelp() {
Telegram.WebApp.sendData('/help');
// Подготовка WebApp
Telegram.WebApp.ready();

// Использование данных initData для настройки приложения или отправки данных на сервер
const initData = Telegram.WebApp.initData;
const initDataUnsafe = Telegram.WebApp.initDataUnsafe;

// Можете использовать эти данные для показа информации, или настройки игры
console.log("initData:", initData);
console.log("initDataUnsafe:", initDataUnsafe);

function nextRound() {
// Код для следующего раунда, может использовать данные из initData
console.log("Следующий раунд!");
}
</script>
</body>
Expand Down

0 comments on commit 58fffc5

Please sign in to comment.