Integrating with AngularJS
This will explain how to integrate OAuth2 authentication into a Angular application using AuthAction with angular-oauth2-oidc
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-angular-example.git
cd authaction-angular-example -
Install dependencies:
npm install
-
Configure your Authaction credentials:
configure your AuthAction OAuth2 details using environment variables in your .env.development file
AUTHACTION_TENANT_DOMAIN=your-authaction-tenant-domain
AUTHACTION_CLIENT_ID=your-authaction-app-clientid
AUTHACTION_REDIRECT_URI=http://localhost:4200/
AUTHACTION_LOGOUT_REDIRECT_URI=http://localhost:4200/
Usage
-
Start the development server:
npm start
This will start the Angular application on
http://localhost:4200
. -
Testing Authentication:
- Open your browser and navigate to
http://localhost:4200
. - 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
)
- OAuthService Setup:
- Configures the OAuth2 authentication using
angular-oauth2-oidc
. - Sets up
issuer
,clientId
,redirectUri
, andpostLogoutRedirectUri
based on the credentials from.env.development
.
- Configures the OAuth2 authentication using
Application Component (src/App.js
)
- Login and Logout Handling:
login
triggers a redirect to the Authaction login page.logout
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
andpostLogoutRedirectUri
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.