Skip to content

Passwordless quickstart (via OIDC)

This guide will walk you through implementing passwordless authentication via Scalekit’s OIDC flow. Depending on your configuration, your users will be sent either a one time passcode (OTP) or a magic link to verify their identity.

Before you begin, ensure you have:

  1. Access to your Scalekit Account and the API credentials. If you don’t have a Scalekit account yet, you can signup here.

  2. Installed Scalekit SDK into your project

    Terminal window
    npm install @scalekit/sdk
    import { Scalekit } from '@scalekit-sdk/node';
    const scalekit = new Scalekit(
    '<SCALEKIT_ENVIRONMENT_URL>',
    '<SCALEKIT_CLIENT_ID>',
    '<SCALEKIT_CLIENT_SECRET>',
    );
  1. Before implementing the code, ensure passwordless authentication is properly configured in your Scalekit dashboard:

    1. Navigate to Authentication > Auth Methods
    2. Locate the Passwordless section
    3. Choose the type of passwordless authentication to use.
    4. Save your changes

  2. To initiate passwordless authentication, redirect users to the Scalekit authorization endpoint with the appropriate parameters.

    Construct your authorization URL with the following parameters and redirect the user to the authorization URL.

    ParameterDescription
    redirect_uriYour application endpoint that will receive the authorization code after successful authentication. Example: https://your-app.com/auth/callback
    client_idYour unique Scalekit application identifier that specifies both your app and environment (staging, production).
    login_hintThe email address of the user to send the verification email

    Example implementation

    import { ScalekitClient } from '@scalekit-sdk/node';
    // Initialize the SDK client
    const scalekit = new ScalekitClient(
    '<SCALEKIT_ENVIRONMENT_URL>',
    '<SCALEKIT_CLIENT_ID>',
    '<SCALEKIT_CLIENT_SECRET>',
    );
    const options = {};
    options['loginHint'] = 'user@example.com';
    const authorizationURL = scalekit.getAuthorizationUrl(redirectUrl, options);

    This redirect will send users to the Scalekit authentication flow, where they’ll authenticate with their email before being returned to your application.

    Example authorization URL
    <YOURAPP_SCALEKIT_ENVIRONMENT_URL>/authorize?
    client_id=skc_122056050118122349527&
    redirect_uri=https://yourapp.com/auth/callback&
    login_hint=user@example.com&
    response_type=code&
    scope=openid%20profile%20email&
    state=jAy-state1-gM4fdZdV22nqm6Q_jAy-XwpYdYFh..2nqm6Q

    After redirecting users to the Scalekit authorization endpoint, handle the callback at your redirect_uri to retrieve the user profile and complete the authentication process.

  3. After successful user authentication via OTP, Scalekit redirects users to your specified redirect_uri with a temporary authorization code parameter. This code must be exchanged for the user’s profile information through a secure server-side request.

    The authorization code exchange process should always be performed server-side to maintain security. This server-side request will:

    1. Validate the authorization code
    2. Return the authenticated user’s profile details
    Fetch user profile
    // Handle oauth redirect_url, fetch code and error_description from request params
    const { code, error, error_description } = req.query;
    if (error) {
    // Handle errors
    }
    const result = await scalekit.authenticateWithCode(code, redirectUri);
    const userEmail = result.user.email;
    // Next step: create a session for this user and allow access

    The result object

    Result object
    {
    user: {
    email: "john.doe@example.com" // User's email address
    },
    idToken: "<USER_PROFILE_JWT>", // JWT containing user profile information
    accessToken: "<API_CALL_JWT>", // Temporary Access Token for accessing user's email
    expiresIn: 899 // Token expiration time in seconds
    }

Congratulations! You’ve successfully implemented passwordless authentication in your application. Users can now sign in securely without passwords by entering a verification code or clicking a magic link sent to their email.

  • Bring your own email provider Coming soon
  • Customize the email templates to match your brand Coming soon