A React single-page application using MSAL React 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
This sample demonstrates a React single-page application (SPA) calling a protected Node.js web API using the Microsoft Authentication Library for React (MSAL React). The Node.js web API itself is protected using the passport-azure-ad plug-in for Passport.js
Here you'll learn how to register a protected web API, accept authorized calls and validate access tokens.
- The client React SPA uses MSAL React to sign-in and obtain a JWT access token from Azure AD B2C.
- The access token is used as a bearer token to authorize the user to call the Node.js web API protected Azure AD B2C.
- The protected web API responds with the claims in the Access Token.
File/folder | Description |
---|---|
SPA/App.jsx |
Main application logic resides here. |
SPA/fetch.jsx |
Provides a helper method for making fetch calls. |
SPA/authConfig.js |
Contains authentication parameters for SPA project. |
API/config.js |
Contains authentication parameters for API project. |
API/index.js |
Main application logic of custom web API. |
- An Azure AD B2C tenant. For more information see: How to get an Azure AD 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-react-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.
- Setup the service app:
cd ms-identity-javascript-react-tutorial
cd 3-Authorization-II/2-call-api-b2c
cd API
npm install
- Setup the client app:
cd ..
cd SPA
npm install
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.
Please refer to: Tutorial: Create user flows in Azure Active Directory B2C
Please refer to: Tutorial: Add identity providers to your applications in Azure Active Directory B2C
- 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
msal-react-api
. - Under Supported account types, select Accounts in any identity provider or organizational directory (for authenticating users with user flows).
- 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:
- Select
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 (
https://{tenantName}.onmicrosoft.com/{clientId}
) by selecting Save.
- Select
- 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
demo.read
. - For Admin consent display name type
Access msal-react-api
. - For Admin consent description type
Allows the app to access msal-react-api as the signed-in user.
- Keep State as Enabled.
- Select 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:
- Select the
Manifest
blade on the left.- 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
API\config.json
file. - Find the key
credentials.clientID
and replace the existing value with the application ID (clientId) ofmsal-react-api
app copied from the Azure portal. - Find the key
credentials.tenantName
and replace the existing value with your Azure AD B2C tenant's name (e.g.fabrikamb2c.onmicrosoft.com
). - Find the key
protectedRoutes.hello.scopes
and replace the existing value with the name of the scope you've just exposed (e.g.demo.read
).
- 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
msal-react-spa
. - Under Supported account types, select Accounts in any identity provider or organizational directory (for authenticating users with user flows).
- In the Redirect URI (optional) section, select Single-page application in the combo-box and enter the following redirect URI:
http://localhost:3000/
.
- 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 API permissions blade in the left to open the page where we add access to the APIs that your application needs.
- Select the Add a permission button and then:
- Ensure that the My APIs tab is selected.
- In the list of APIs, select the API
msal-react-api
. - In the Delegated permissions section, select the Access 'msal-react-api' in the list. Use the search box if necessary.
- Select the Add permissions button at the bottom.
- Finally, select the Grant admin consent button at the top.
- Select the Add a permission button and then:
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
SPA\src\authConfig.js
file. - Find the key
msalConfig.auth.clientId
and replace the existing value with the application ID (clientId) ofmsal-react-spa
app copied from the Azure portal. - Find the key
protectedResources.apiHello.scopes
and replace the existing value with the scope ofmsal-react-api
that you have exposed in the previous steps (e.g.https://fabrikamb2c.onmicrosoft.com/helloapi/demo.read
).
To setup your B2C user-flows, do the following:
- Find the key
b2cPolicies.names
and populate it with your policy names e.g.signUpSignIn
. - Find the key
b2cPolicies.authorities
and populate it with your policy authority strings e.g.https://<your-tenant-name>.b2clogin.com/<your-tenant-name>.onmicrosoft.com/b2c_1_susi
. - Find the key
b2cPolicies.authorityDomain
and populate it with the domain portion of your authority string e.g.<your-tenant-name>.b2clogin.com
.
- Run the service app:
cd 3-Authorization-II/2-call-api-b2c/API
npm start
- In a separate terminal, run the client app:
cd 3-Authorization-II/2-call-api-b2c/SPA
npm start
- Open your browser and navigate to
http://localhost:3000
. - Select the Sign In button on the top right corner. Choose either Popup or Redirect flows.
- Select the HelloAPI button on the navigation bar. This will make a call to your web API.
ℹ️ Did the sample not work for you as expected? Then please reach out to us using the GitHub Issues page.
ℹ️ if you believe your issue is with the B2C service itself rather than with the sample, please file a support ticket with the B2C team by following the instructions here.
Were we successful in addressing your learning objective? Consider taking a moment to share your experience with us.
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();
});
- What is Azure Active Directory B2C?
- Application types that can be used in Active Directory B2C
- Recommendations and best practices for Azure Active Directory B2C
- Azure AD B2C session
- Initialize client applications using MSAL.js
- Single sign-on with MSAL.js
- Handle MSAL.js exceptions and errors
- Logging in MSAL.js applications
- Pass custom state in authentication requests using MSAL.js
- Prompt behavior in MSAL.js interactive requests
- Use MSAL.js to work with Azure AD B2C
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-active-directory
azure-ad-b2c
ms-identity
adal
msal
].
If you find a bug in the sample, raise the issue on GitHub Issues.
To provide feedback on or suggest features for Azure Active Directory, visit 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.