Sample React SPA

Categories
< All Topics
Print

Sample React SPA

By following this guide, you will be able to deploy a React single-page application (SPA) locally and secure it with OpenID Connect.

Prerequisites

  • npm with Node.js If you don’t have it, install npm and node in your local environment.
  • A user account in the Indryve Endorse If you don’t already have one, create a user account in the Indryve Endorse.

Register the app

Follow the steps given below to register the sample React SPA in the Indryve Endorse.

  • On the Indryve Endorse Console, go to Applications.
  • Click New Application and select Single-Page Application
  • Enter the following details:
NameGive a unique name to identify your application.
Authorized redirect URLsThe URL to which the user is redirect to after a successful login. Use the following URL for this sample app:https://localhost:3000
Allow sharing with organizationsEnable this to share the new application with all or any selected B2B organizations that belong to your primary organization.
  • Click Register to complete the registration.
  • Go to the Protocol tab and take note of the Client ID. You will need it to configure the application later.

Tip

To provide a better experience for the user, it is recommended to configure an access URL for the application. You can set an access URL from the General tab of the application. (For this sample application, the access URL is https://localhost:3000).

The access URL is used,

  • in the application catalog and discovery flows.
  • to redirect the user back to the application in the following scenarios.
    • if the login page times out
    • after a password reset
    • after the self sign-up verification
  • to re-initiate the login flow if the login flow fails.

Download the sample

Click the button below to download the sample. You can also choose to view the source before doing so.

https://github.com/asgardeo/asgardeo-auth-react-sdk/releases/latest/download/asgardeo-react-app.zip

https://github.com/asgardeo/asgardeo-auth-react-sdk/tree/main/samples/asgardeo-react-app

Configure the sample

Follow the steps given below to configure the sample app.

  • Unzip the application folder.
  • Go to the asgardeo-react-app/src/ folder and open the config.json file in a text editor.
  • Update the following in the config.json file:
{
"clientID": "{client ID}",
"baseUrl": "https://localhost:9443",
"signInRedirectURL": "https://localhost:3000",
"signOutRedirectURL": "https://localhost:3000",
"scope": [ "profile" ]
}
ConfigurationDescription
clientIDThe client id that you received when you registered the application in the Indryve Endorse.
baseUrlAll authentication requests that the client application makes to the Indryve Endorse will be appended to this base URL.:
https://localhost:9443
scopeThe list of OIDC scopes that are used for requesting user information. You can add OIDC scopes such as profile and email in a comma-separated list as follows:
"scope": ["profile", "email"]

Run the sample

Follow the steps given below to run the sample.

  • On your terminal, navigate to the root of the project and run the command given below to start the sample application:

npm install && npm start

  • Once the app is successfully compiled, it is accessible at https://localhost:3000.
  • Click Login. You will be redirected to the Indryve Endorse login page.
  • Enter the credentials of your user account and click Sign In.

Extend your login session

By default, the user login session is active for only 15 minutes. You can extend the session to 14 days by selecting the Remember me on this computer option provided at the login screen of your application.

Table of Contents

Start typing and press Enter to search

Shopping Cart