Click here to Skip to main content
15,890,557 members
Articles / Hosted Services / Azure

AAD Authentication with Angular2 using Azure AD B2C and MSAL Library

Rate me:
Please Sign up or sign in to vote.
3.96/5 (7 votes)
6 Nov 2017CPOL5 min read 27K   218   6   2
This demonstrates how to use MSAL with Azure B2C for authentication.

Introduction

In most of the applications, we need authentication whether it is web based or mobile/window based. So AAD can be a good solution for authentication for your applications. It provides identity as a service with support of protocols such as OAuth, OpenID, and SAML. Before I start the implementation of our example, please read the basic introduction of these. If you are already aware about these, you can skip this part.

  1. AAD
  2. Azure B2C
  3. ADAL and its libraries: See its targeting v1.0
  4. MSAL and its libraries: it’s targeting v2.0
  5. ADAL vs MSAL / v1.0 vs v2.0

1. Configure Azure B2C

  1. Follow the steps mentioned in this link. You can follow the given easy steps and create all policies for registration/login/reset password, etc.

    Image 1

  2. Register your application: Use reply URL as http://localhost:4200

2. Setting Up the Application

  1. Download and install Node.js on your system.
  2. Download Visual Studio Code IDE.
  3. Check if npm command on command prompt is working on your system, if not, set the path of npm.
  4. Install CLI.
    Angular CLI is an awesome command line tool through which we can do all tasks required for creating, building and deploying an Angular project.
    npm install -g @angular/cli
    If you have already installed CLI, then:
    npm uninstall -g angular-cli
    npm cache clean
    npm install -g @angular/cli@latest
  5. Creating the Project using CLI and run the sample application using ng serve command.
    ng new msalb2c-demo
    cd msalb2c-demo
    npm i
    ng serve -o
    ng serve -o will open your default browser with http://localhost:4200 to view your application in your browser. Various CLI commands are available to ease project development. CLI commands

3. MSAL Implementation

As we are working on Angular2 project, we need JS library that is available on github. So install this npm package in your project.

npm install msal

Here, I am supposing your requirement is to authenticate your application on root level. So when a user hits your application:

  1. It redirects it to AAD B2C authentication page.
  2. From authentication page, user can register himself, reset his password and login.
  3. If user logged-in successfully, it will be redirected to your application URL that you had given in reply URL on Azure portal at the time of application registration as seen in the below screen.

    Image 2

  4. On the application redirection (after authentication), MSAL library stored the required parameters into sessionstorage that you can get using window.sessionStorage.getItem('msal.idtoken'). MSAL library stores token and other parameters in sessionstorage by default. You can change this storage location sessionstorage to localstorage too if required.

The token is saved by name msal.idtoken in sessionstorage after successfully logged in. This token contains all the application claims defined in Sign-in Sign-up policy at Azure like the below image:

Image 3

If you want to see this token content, then you can use JWT analyzer chrome extension.

Image 4

Generally, this token is used for API authentication for data operations in client app. So you can authenticate your web API by sending it with request as Authorization header. Your API will validate this token and perform the operation accordingly.

You can get the demo code from my git repository. The brief of code is below:

login.component.ts: This component that will call login method.

C#
ngOnInit() {
const token: string = this.authSandbox.getToken();
if (token === null || token === undefined || token === 'null') {
this.authSandbox.login();
}

auth.service.ts: This is the wrapper class over msal.service.ts to provide all login, logout code that will be called in your component.

Note: Token has the expiration time so it may expire so we have to check whether the token is active or not. If not, it should acquire a new token by calling login method again.

JavaScript
import { Injectable } from '@angular/core';
import { tokenNotExpired } from 'angular2-jwt';
import { MSALService } from './msal.service';
import { HttpRequest } from '@angular/common/http';
@Injectable()
export class AuthService {
    cachedRequests: Array<httprequest<any>> = [];
    constructor(private msalService: MSALService) { }

    public getToken(): string {
        // Read token from session storage and return.
        let token = window.sessionStorage.getItem('msal.idtoken');
        if (this.isTokenExpired(token)) {
            return token;
        } else {
            this.msalService.login();
        }
    }

    public login() {
        const token = this.getToken();
        if (token == null || token === undefined || token === 'null') {
            this.msalService.login();
        }
    }

    private isTokenExpired(token: string): boolean {
        if (token != null && token !== undefined && token !== 'null') {
            return tokenNotExpired(null, token);
        }
        return true;
    }
}
</httprequest<any>

msal.service.ts: It has the code that will call MSAL library API.

authentication.guard.ts: It is used to enable authentication at root level.

app-routing.module.ts: It is used to configure your route, it will go to authentication.gurad.ts and if already not authenticated, then redirected to LoginComponent, canActivate: [AuthenticationGuard] is guard deciding if a route can be activated.

const routes: Routes = [
{ path: '', redirectTo: '/home', pathMatch: 'full', canActivate: [AuthenticationGuard] },
{ path: 'home', component: AppComponent, canActivate: [AuthenticationGuard] },
{ path: 'authentication', component: LoginComponent }
];

Using the Code

I have created a separate module for authentication in that you have to change your azure AAD B2C configuration in msal.service.ts file.

C++
private applicationConfig: any = {
       clientID: 'paste your application id here',
       authority: 'https://login.microsoftonline.com/tfp/demob2c.onmicrosoft.com/B2C_1_SignInPolicy',
       b2cScopes: ['https://demob2c.onmicrosoft.com/user.read'],
       redirectUrl: 'http://localhost:4200',
       extraQueryParameter: 'p=B2C_1_SignInPolicy&scope=openid&nux=1'
   };

demob2c is Azure B2C tenant.

redirectUrl should be the same as reply URL given at the time of Application registration.

To run the demo code:

  1. Download the code or clone git repository.
  2. If angular2 environment is not setup on your system, follow step above 2 "Setting up the application".
  3. Run command "npm install" on vs code terminal.
  4. Run "ng serve -o" in vs code terminal.

Points of Interest

  1. MSAL can be considered as the next version of ADAL as many of the primitives remain the same (AcquireTokenAsync, AcquireTokenSilentAsync, AuthenticationResults, etc.) and the goal, making it easy to access API without becoming a protocol expert, remains the same. ADAL only works with work and school accounts via Azure AD and ADFS, MSAL works with work and school accounts, MSAs, Azure AD B2C and ASP.NET Core Identity, and eventually (in a future release) with ADFS… all in a single, consistent object model. So if you are using ADAL, plan to switch to MSAL. :)
  2. Azure B2C is awesome. If you see the demo application at https://msalb2c-demo.azurewebsites.net, I haven't written code for login page, sign in page, signup page and other user profile related stuff, all are done by just setting up policies on Azure B2C. It provides a huge bunch of cool features from identity as a service to social login support. The login page with signin, signup and forget features look like below, you can also customize this page based on requirements.

Image 5

The same azure b2c setup can be used with multiple applications. 

History

Will be created soon... :)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India

A technology enthusiast and software developer by profession. He is developing .Net,database and azure based enterprise applications from past 6 years.


His skills includes C# ,ASP.NET, ASP.NET MVC,WCF,JQuery,Javascript,SQL Server,Oracle . His areas of interests are database development and application software development using Microsoft Technologies.


Visit his blog: queryingsql.com

Blog | Articles | Answers |Facebook
The best anti-virus is a smart user


Comments and Discussions

 
QuestionExcept b2cScopes how can we implement Pin
Member 1148475426-Jul-22 4:09
Member 1148475426-Jul-22 4:09 
QuestionRedirect URL Pin
Member 139374653-Aug-18 18:12
Member 139374653-Aug-18 18:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.