Edit

Share via


Quickstart: Sign in users in a single-page app by using native authentication JavaScript SDK

Applies to: White circle with a gray X symbol. Workforce tenants Green circle with a white check mark symbol. External tenants (learn more)

In this Quickstart, you use a single-page application (SPA) to demonstrate how to authenticate users by using native authentication SDK. The sample app demonstrates user sign-up, sign-in, and sign-out for both email with password and email one-time passcode authentication flows.

Prerequisites

Enable public client and native authentication flows

To specify that this app is a public client and can use native authentication, enable public client and native authentication flows:

  1. From the app registrations page, select the app registration for which you want to enable public client and native authentication flows.
  2. Under Manage, select Authentication.
  3. Under Advanced settings, allow public client flows:
    1. For Enable the following mobile and desktop flows select Yes.
    2. For Enable native authentication, select Yes.
  4. Select Save button.

Clone or download sample SPA

To obtain the sample application, you can either clone it from GitHub or download it as a .zip file.

  • To clone the sample, open a command prompt and navigate to where you wish to create the project, and enter the following command:

    git clone https://github.com/Azure-Samples/ms-identity-ciam-native-javascript-samples.git
    
  • Download the sample. Extract it to a file path where the length of the name is fewer than 260 characters.

Install project dependencies

  1. Open a terminal window and navigate to the directory that contains the React sample app:

        cd typescript/native-auth/react-nextjs-sample
    
  2. Run the following command to install app dependencies:

    npm install
    

Configure the sample React app

  1. Open src/config/auth-config.ts and replace the following placeholders with the values obtained from the Microsoft Entra admin center:

    • Find the placeholder Enter_the_Application_Id_Here then replace it with the Application (client) ID of the app you registered earlier.
    • Find the placeholder Enter_the_Tenant_Subdomain_Here then replace it with the tenant subdomain in your Microsoft Entra admin center. For example, if your tenant primary domain is contoso.onmicrosoft.com, use contoso. If you don't have your tenant name, learn how to read your tenant details.
  2. Save the changes.

Configure CORS proxy server

The native authentication API doesn't support Cross-Origin Resource Sharing (CORS) so you must set up a proxy server between your SPA app and the APIs.

This code sample includes a CORS proxy server that forwards requests to native authentication API URL endpoints. The CORS proxy server is a Node.js server that listens on port 3001.

To configure the proxy server, open the proxy.config.js file, then the find the placeholder:

  • tenantSubdomain and replace it with the Directory (tenant) subdomain. For example, if your tenant primary domain is contoso.onmicrosoft.com, use contoso. If you don't have your tenant subdomain, learn how to read your tenant details.
  • tenantId and replace it with the Directory (tenant) ID. If you don't have your tenant ID, learn how to read your tenant details.

Run and test your app

You've now configured the sample app and it's ready to run.

  1. From your terminal window, run the following commands to start the CORS proxy server:

    cd typescript/native-auth/react-nextjs-sample/
    npm run cors
    
  2. To start your React app, open another terminal window, then run the following commands:

    cd typescript/native-auth/react-nextjs-sample/
    npm run dev
    
  3. Open a web browser and go to http://localhost:3000/.

  4. To sign up for an account, select Sign Up, then follow the prompts.

  5. After you sign up, test sign-in and password reset by selecting Sign In and Reset Password buttorespectively.