We've updated our Terms of Service. By continuing to use our services, you agree to the updated Terms.

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

#Telegram Setup

After installing the OAuth extension, you can now enable Telegram Login for your Magic app:

  1. Follow Telegram instructions to create a bot
  2. Provide Bot name and Bot Token in your Magic developer dashboard
  3. Optionally enable Seamless login with Mini App
  4. 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
note

If you have CSP enforcement allow the following script-src:

  • https://telegram.org
  • https://web.telegram.org

#Implementation

Javascript
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};

important

Keep your token secure and store it safely, it can be used by anyone to control your bot

#Resources