Integrating with ReactJS
This will explain how to integrate OAuth2 authentication into a React application using AuthAction with the react-oidc-context
library. This step-by-step guide will show you how to configure authentication, handle login and logout, and ensure a seamless user experience.
Overview
This application showcases how to configure and handle authentication and logout using Authaction’s OAuth2 service. The setup includes:
- Redirecting users to the login page.
- Handling successful authentication and displaying user information.
- Logging out users and redirecting them to the specified logout URL.
Prerequisites
Before using this application, ensure you have:
-
Node.js and npm installed: You can download and install them from nodejs.org.
-
Authaction OAuth2 credentials: You will need to have the
tenantDomain
,clientId
, and relevant URIs from your Authaction setup.
Installation
-
Clone the repository (if applicable):
git clone git@github.com:authaction/authaction-react-example.git
cd authaction-react-example -
Install dependencies:
npm install
-
Configure your Authaction credentials:
configure your AuthAction OAuth2 details using environment variables in your .env file
REACT_APP_AUTHACTION_TENANT_DOMAIN=your-authaction-tenant-domain
REACT_APP_AUTHACTION_CLIENT_ID=your-authaction-app-clientid
REACT_APP_AUTHACTION_REDIRECT_URI=http://localhost:3000/
REACT_APP_AUTHACTION_LOGOUT_REDIRECT_URI=http://localhost:3000/
Usage
-
Start the development server:
npm start
This will start the React application on
http://localhost:3000
. -
Testing Authentication:
- Open your browser and navigate to
http://localhost:3000
. - Click the "Login" button to be redirected to the Authaction login page.
- After successful login, you will be redirected back to the application with a welcome message showing your email and a "Logout" button.
- Click the "Logout" button to be logged out and redirected to the specified logout URL.
- Open your browser and navigate to
Code Explanation
Configuration (src/index.js
)
- AuthProvider Setup:
- Configures the OAuth2 authentication using
react-oidc-context
. - Sets up
authority
,client_id
,redirect_uri
, andpost_logout_redirect_uri
based on the credentials from.env
. onSigninCallback
handles the cleanup of the URL after the sign-in callback.
- Configures the OAuth2 authentication using
Application Component (src/App.js
)
- Login and Logout Handling:
handleLogin
triggers a redirect to the Authaction login page.handleLogout
triggers a redirect to the Authaction logout page.- The application conditionally displays a welcome message and logout button if the user is authenticated. Otherwise, it shows a login button.
Common Issues
-
Redirects not working:
- Ensure that the
redirectUri
andlogoutRedirectUri
match the URIs configured in your AuthAction application settings. - Make sure the application is running on the same port as specified in the
redirectUri
.
- Ensure that the
-
Network Errors:
- Verify that your network allows traffic to the Authaction servers and that there are no firewall rules blocking the OAuth2 redirects.