Skip to content

Instantly share code, notes, and snippets.

View Mandrik88's full-sized avatar

Elena Mandrik88

View GitHub Profile
const crypto = require("crypto");
function verifyInitData(initData) {
const botToken = process.env.TELEGRAM_BOT_TOKEN;
const params = new URLSearchParams(initData);
const hash = params.get("hash");
params.delete("hash");
const dataToCheck = Array.from(params.entries())
.sort(([a], [b]) => a.localeCompare(b))