Telegram Social Login with Magic
Telegram Social Login with Magic
#Overview
You can allow your users to sign up & login into your web application with their Telegram account.
#Prerequisites
- You will need to have the Magic SDK installed into your web app
- You will need to have the Magic SDK - OAuth Extension installed into your web app
#Telegram Setup
After installing the OAuth extension, you can now enable Telegram Login for your Magic app:
- Follow Telegram instructions to create a bot
- Provide
Bot name
andBot Token
in your Magic developer dashboard - Optionally enable Seamless login with Mini App
- Copy the Redirect URI field from your Magic Dashboard and set it as your bot domain using command
/setdomain
int@BotFather
If you have CSP enforcment allow the following script-src:
- https://telegram.org
- https://web.telegram.orgImplementation
If you have CSP enforcement allow the following script-src:
- https://telegram.org
- https://web.telegram.org
#Implementation
01await magic.oauth2.loginWithPopup({
02 provider: 'telegram'
03});
The result interface:
01interface OAuthRedirectResult {
02 magic: {
03 idToken: string;
04 userMetadata: MagicUserMetadata;
05 },
06 oauth: {
07 provider: string;
08 scope: string[];
09 accessToken: string;
10 userHandle: string;
11 userInfo: ...;
12 }
13};
Keep your token secure and store it safely, it can be used by anyone to control your bot