'Telegram Web Bots data validation in JavaScript
I've tried to do user verification script for telegram web app for bots. I have no idea how to fix it.
import sha256 from 'js-sha256'
const telegram = window.Telegram.WebApp
const bot_token = '<bot-token>'
const data_check_string = telegram.initData
var secret_key = sha256.hmac.create(bot_token).update("WebAppData")
var hash = sha256.hmac.create(data_check_string).update(secret_key).hex();
if ( hash == telegram.initDataUnsafe.hash) {
// data is from Telegram
}
Solution 1:[1]
Try to look to node js implementation, I tried to well comment it using official telegram pseudocode. Maybe it helps you.
But in my convinience this validation need to execute at backend because in another case you compromise your bot secret token
https://gist.github.com/konstantin24121/49da5d8023532d66cc4db1136435a885
Solution 2:[2]
The stated code to be used for validation in the official documentation is this:
data_check_string = ...
secret_key = HMAC_SHA256(<bot_token>, "WebAppData")
if (hex(HMAC_SHA256(data_check_string, secret_key)) == hash) {
// data is from Telegram
}
please try to implement it as it is documented.
The link referring to this problem is: Telegram API validation
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Konstantin |
Solution 2 | Shayan Faghani |