Discord Social Login with Magic

Discord Social Login with Magic

#Overview

You can allow your users to sign up & log in to your web app with their Discord account.

#Usage

#Prerequisites

note

Magic SDK offers two OAuth extensions: v1 and v2. For web applications, it is recommended to use v2, while v1 should be used for mobile applications.

#Discord Setup (v1 extension)

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

  1. Create a Discord API application
  2. Go to your Magic Dashboard
  3. Select the Magic app for which you’d like to enable Discord Login, or create a new app
  4. Navigate to Social Login from the sidebar
  5. Click the toggle for Discord
  6. Copy the Redirect URI field from your Magic Dashboard
  7. Return to your Discord developer Dashboard, navigate to OAuth2 from the sidebar, and paste the Redirect URI you obtained from your Magic Dashboard into the "Redirect URI" field. Don't forget to save your changes!
  8. Next, obtain the "Client ID" and "Client Secret" from the current page
  9. Return to your Magic Dashboard and input the Client ID and Client Secret for your Discord OAuth app
  10. In Magic Dashboard, click “Save” – Done!

#Discord Setup (v2 extension)

  • Follow above steps, but disregard Magic's Redirect URI in step 6
  • In step 7, paste the Redirect URI you are passing in as the redirectURI argument to the loginWithRedirect method
Javascript
01await magic.oauth2.loginWithRedirect({
02  provider: 'discord',
03  redirectURI: 'https://your-app.com/your/oauth/callback', // <== whitelist this with Discord
04});

#Resources