Vanilla JavaScript single-page application (SPA) using MSAL.js to authorize users for calling a protected web API on Azure AD B2C
- Overview
- Scenario
- Contents
- Prerequisites
- Setup
- Registration
- Running the sample
- Explore the sample
- About the code
- More information
- Community Help and Support
- Contributing
- Code of Conduct
This sample demonstrates a Vanilla JavaScript single-page application that lets users authenticate against Azure Active Directory B2C using the Microsoft Authentication Library for JavaScript (MSAL.js), then acquires an Access Token for a web API that is also protected by Azure AD B2C. In doing so, it also illustrates various authorization and B2C concepts, such as Access Tokens, Refresh Tokens, Token Lifetimes and Configuration, silent requests and more.
- The client application uses the MSAL.js to obtain an Access Token from Azure AD B2C.
- The Access Token is used as a bearer to authorize the user to call a protected web API.
- The protected web API responds with the claims in the Access Token.
File/folder | Description |
---|---|
SPA/App/authPopup.js |
Main authentication logic resides here (using Popup flow). |
SPA/App/authRedirect.js |
Use this instead of authPopup.js for authentication with redirect flow. |
SPA/App/authConfig.js |
Contains configuration parameters for the sample. |
SPA/App/apiConfig.js |
Contains Web API scopes and coordinates. |
SPA/App/policies.js |
Contains B2C custom policies and user-flows. |
API/process.json |
Contains configuration parameters for logging via Morgan. |
API/index.js |
Main application logic resides here. |
API/config.json |
Contains authentication parameters for the sample. |
- Node.js must be installed to run this sample.
- A modern web browser. This sample uses ES6 conventions and will not run on Internet Explorer.
- Visual Studio Code is recommended for running and editing this sample.
- VS Code Azure Tools extension is recommended for interacting with Azure through VS Code Interface.
- An Azure Active Directory B2C (Azure AD B2C) tenant. For more information on how to get an Azure AD tenant, see: Create an Azure Active Directory B2C tenant
- A user account in your Azure AD B2C tenant.
From your shell or command line:
git clone https://github.com/Azure-Samples/ms-identity-javascript-tutorial.git
or download and extract the repository .zip file.
⚠️ To avoid path length limitations on Windows, we recommend cloning into a directory near the root of your drive.
cd ms-identity-javascript-tutorial
cd 3-Authorization-II/2-call-api-b2c
cd API
npm install
cd..
cd SPA
npm install
ℹ️ This sample comes with a pre-registered application for testing purposes. If you would like to use your own Azure AD B2C tenant and application, follow the steps below to register and configure the applications in the Azure Portal. Otherwise, continue with the steps for Running the sample.
As a first step you'll need to:
- Sign in to the Azure portal.
- If your account is present in more than one Azure AD B2C tenant, select your profile at the top right corner in the menu on top of the page, and then switch directory to change your portal session to the desired Azure AD B2C tenant.
- Navigate to the Azure portal and select the Azure AD B2C service.
- Select the App Registrations blade on the left, then select New registration.
- In the Register an application page that appears, enter your application's registration information:
- In the Name section, enter a meaningful application name that will be displayed to users of the app, for example
ms-identity-javascript-tutorial-c3s2-api
. - Under Supported account types, select Accounts in any organizational directory only.
- In the Name section, enter a meaningful application name that will be displayed to users of the app, for example
- Select Register to create the application.
- In the app's registration screen, find and note the Application (client) ID. You use this value in your app's configuration file(s) later in your code.
- Select Save to save your changes.
- In the app's registration screen, select the Expose an API blade to the left to open the page where you can declare the parameters to expose this app as an API for which client applications can obtain access tokens for.
The first thing that we need to do is to declare the unique resource URI that the clients will be using to obtain access tokens for this API. To declare an resource URI, follow the following steps:
- Click
Set
next to the Application ID URI to generate a URI that is unique for this app. - For this sample, accept the proposed Application ID URI (api://{clientId}) by selecting Save.
- Click
- All APIs have to publish a minimum of one scope for the client's to obtain an access token successfully. To publish a scope, follow the following steps:
- Select Add a scope button open the Add a scope screen and Enter the values as indicated below:
- For Scope name, use
access_as_user
. - Select Admins and users options for Who can consent?
- For Admin consent display name type
Access ms-identity-javascript-tutorial-c3s2-api
- For Admin consent description type
Allows the app to access ms-identity-javascript-tutorial-c3s2-api as the signed-in user.
- For User consent display name type
Access ms-identity-javascript-tutorial-c3s2-api
- For User consent description type
Allow the application to access ms-identity-javascript-tutorial-c3s2-api on your behalf.
- Keep State as Enabled
- Click on the Add scope button on the bottom to save this scope.
- For Scope name, use
- Select Add a scope button open the Add a scope screen and Enter the values as indicated below:
- On the right side menu, select the
Manifest
blade.- Set
accessTokenAcceptedVersion
property to 2. - Click on Save.
- Set
Open the project in your IDE (like Visual Studio or Visual Studio Code) to configure the code.
In the steps below, "ClientID" is the same as "Application ID" or "AppId".
- Open the
config.json
file. - Find the key
clientID
and replace the existing value with the application ID (clientId) of thems-identity-javascript-tutorial-c3s2-api
application copied from the Azure portal. - Find the key
tenantID
and replace the existing value with your Azure AD tenant ID. - Find the key
audience
and replace the existing value with the application ID (clientId) of thems-identity-javascript-tutorial-c3s2-api
application copied from the Azure portal.
- Navigate to the Microsoft identity platform for developers App registrations page.
- Select New registration.
- In the Register an application page that appears, enter your application's registration information:
- In the Name section, enter a meaningful application name that will be displayed to users of the app, for example
ms-identity-javascript-tutorial-c3s2-spa
. - Under Supported account types, select Accounts in any organizational directory or any identity provider. For authenticating users with Azure AD B2C.
- In the Redirect URI (optional) section, select Web in the combo-box and enter the following redirect URI:
http://localhost:6420
.
- In the Name section, enter a meaningful application name that will be displayed to users of the app, for example
- Select Register to create the application.
- In the app's registration screen, find and note the Application (client) ID. You use this value in your app's configuration file(s) later in your code.
- Select Save to save your changes.
- In the app's registration screen, click on the API Permissions blade in the left to open the page where we add access to the APIs that your application needs.
- Click the Add a permission button and then,
- Ensure that the My APIs tab is selected.
- In the list of APIs, select the API that you've just registered, i.e.
ms-identity-javascript-tutorial-c3s2-api
. - In the Delegated permissions section, select the access_as_user in the list. Use the search box if necessary.
- Click on the Add permissions button at the bottom.
- Finally, click on the Grant admin consent button at the top.
Open the project in your IDE (like Visual Studio or Visual Studio Code) to configure the code.
In the steps below, "ClientID" is the same as "Application ID" or "AppId".
-
Open the
App\authConfig.js
file. -
Find the key
clientId
and replace the existing value with the application ID (clientId) of thems-identity-javascript-tutorial-c3s2-spa
application copied from the Azure portal. -
Find the key
redirectUri
and replace the existing value with the base address of thems-identity-javascript-tutorial-c3s2-spa
app (by defaulthttp://localhost:6420
). -
Open the
App\policies.js
file. -
Find the key
policies.names
and replace it with the names (IDs) of your policies/user-flows e.g.b2c_1_susi
. -
Find the key
policies.authorities
abd replace it with the authority strings of your policies/user-flows e.g.https://fabrikamb2c.b2clogin.com/fabrikamb2c.onmicrosoft.com/b2c_1_susi
. -
Find the key
policies.authorityDomain
abd replace it with the domain of your authority e.g.fabrikamb2c.b2clogin.com
. -
Open the
App\apiConfig.js
file. -
Find the key
scopes
and replace the existing value with the scope of your web API (e.g.api://e767d418-b80b-4568-9754-557f40697fc5/access_as_user
). -
Find the key
uri
and replace the existing value with the coordinates of your web API (by defaulthttp://localhost:5000
).
cd ms-identity-javascript-tutorial
cd 3-Authorization-II/2-call-api-b2c
cd API
npm start
cd..
cd SPA
npm start
- Open your browser and navigate to
http://localhost:6420
. - Click on the sign-in button on the top right corner.
- Once you authenticate, click the Call API button at the center.
Were we successful in addressing your learning objective? Consider taking a moment to share your experience with us..
Access Token requests in MSAL.js are meant to be per-resource-per-scope(s). This means that an Access Token requested for resource A with scope scp1
:
- cannot be used for accessing resource A with scope
scp2
, and, - cannot be used for accessing resource B of any scope.
The intended recipient of an Access Token is represented by the aud
claim; in case the value for the aud
claim does not mach the resource APP ID URI, the token should be considered invalid. Likewise, the permissions that an Access Token grants is represented by the scp
claim. See Access Token claims for more information.
MSAL.js exposes 3 APIs for acquiring a token: acquireTokenPopup()
, acquireTokenRedirect()
and acquireTokenSilent()
:
myMSALObj.acquireTokenPopup(request)
.then(response => {
// do something with response
})
.catch(error => {
console.log(error)
});
For acquireTokenRedirect()
, you must register a redirect promise handler:
myMSALObj.handleRedirectPromise()
.then(response => {
// do something with response
})
.catch(error => {
console.log(error);
});
myMSALObj.acquireTokenRedirect(request);
passport-azure-ad validates the token against the issuer
, scope
and audience
claims (defined in BearerStrategy
constructor) using the passport.authenticate()
API:
app.get('/api', passport.authenticate('oauth-bearer', { session: false }),
(req, res) => {
console.log('Validated claims: ', req.authInfo);
);
On the web API side, passport-azure-ad validates the token against the issuer
, scope
and audience
claims (defined in BearerStrategy
constructor) using the passport.authenticate()
API:
app.get('/api', passport.authenticate('oauth-bearer', { session: false }),
(req, res) => {
console.log('Validated claims: ', req.authInfo);
);
Clients should treat access tokens as opaque strings, as the contents of the token are intended for the resource only (such as a web API or Microsoft Graph). For validation and debugging purposes, developers can decode JWTs (JSON Web Tokens) using a site like jwt.ms.
For the purpose of the sample, cross-origin resource sharing is enabled for all domains. This is insecure. In production, you should modify this as to allow only the domains that you designate.
app.use((req, res, next) => {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Authorization, Origin, X-Requested-With, Content-Type, Accept");
next();
});
Configure your application:
- Use Microsoft Authentication Library for JavaScript to work with Azure AD B2C
- Tutorial: Create an Azure Active Directory B2C tenant
- Single sign-on with MSAL.js
- Handle MSAL.js exceptions and errors
- Logging in MSAL.js applications
Learn more about Microsoft identity platform and Azure AD B2C:
- Microsoft identity platform (Azure Active Directory for developers)
- Overview of Microsoft Authentication Library (MSAL)
- What is Azure Active Directory B2C?
- Azure AD B2C User Flows
- Azure AD B2C Custom Policies
For more information about how OAuth 2.0 protocols work in this scenario and other scenarios, see Authentication Scenarios for Azure AD.
Use Stack Overflow to get support from the community.
Ask your questions on Stack Overflow first and browse existing issues to see if someone has asked your question before.
Make sure that your questions or comments are tagged with [azure-ad
azure-ad-b2c
ms-identity
msal
].
If you find a bug in the sample, please raise the issue on GitHub Issues.
To provide a recommendation, visit the following User Voice page.
If you'd like to contribute to this sample, see CONTRIBUTING.MD.
This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.