Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 764 Bytes

File metadata and controls

16 lines (14 loc) · 764 Bytes
author kengaderdus
ms.service active-directory-b2c
ms.subservice B2C
ms.topic include
ms.date 03/09/2023
ms.author kengaderdus

After the authentication is completed, users interact with the app, which invokes a protected web API. The web API uses bearer token authentication. The bearer token is the access token that the app obtained from Azure AD B2C. The app passes the token in the authorization header of the HTTPS request.

Authorization: Bearer <access token>

If the access token's scope doesn't match the web API's scopes, the authentication library obtains a new access token with the correct scopes.