mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
42eaa67fd5
Co-authored-by: tsnoam <tsnoam@gmail.com> Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com> Co-authored-by: Poolitzer <25934244+Poolitzer@users.noreply.github.com>
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Telegram passport test!</title>
|
|
<meta charset="utf-8">
|
|
<meta content="IE=edge" http-equiv="X-UA-Compatible">
|
|
<meta content="width=device-width, initial-scale=1" name="viewport">
|
|
</head>
|
|
<body>
|
|
<h1>Telegram passport test</h1>
|
|
|
|
<div id="telegram_passport_auth"></div>
|
|
</body>
|
|
|
|
<!--- Needs file from https://github.com/TelegramMessenger/TGPassportJsSDK downloaded --->
|
|
<script src="telegram-passport.js"></script>
|
|
<script>
|
|
"use strict";
|
|
|
|
Telegram.Passport.createAuthButton('telegram_passport_auth', {
|
|
bot_id: 1234567890, // YOUR BOT ID
|
|
scope: {
|
|
data: [{
|
|
type: 'id_document',
|
|
selfie: true
|
|
}, 'address_document', 'phone_number', 'email'], v: 1
|
|
}, // WHAT DATA YOU WANT TO RECEIVE
|
|
public_key: '-----BEGIN PUBLIC KEY-----\n', // YOUR PUBLIC KEY
|
|
nonce: 'thisisatest', // YOUR BOT WILL RECEIVE THIS DATA WITH THE REQUEST
|
|
callback_url: 'https://example.org' // TELEGRAM WILL SEND YOUR USER BACK TO THIS URL
|
|
});
|
|
|
|
</script>
|
|
</html>
|