Skip to content

Files

Latest commit

author
Kim Whitlatch (Beyondsoft Corporation)
Nov 3, 2016
2ea0029 · Nov 3, 2016

History

History
65 lines (47 loc) · 5.75 KB

active-directory-b2c-reference-protocols.md

File metadata and controls

65 lines (47 loc) · 5.75 KB
title description services documentationcenter author manager editor ms.assetid ms.service ms.workload ms.tgt_pltfrm ms.devlang ms.topic ms.date ms.author
Azure Active Directory B2C | Microsoft Docs
How to build apps directly by using the protocols supported by Azure Active Directory B2C.
active-directory-b2c
dstrockis
mbaldwin
5e407d0a-73a2-4d74-ac81-3aa6c31ddcee
active-directory-b2c
identity
na
na
article
07/22/2016
dastrock

Azure AD B2C: Authentication protocols

Azure Active Directory (Azure AD) B2C provides identity as a service for your apps by supporting two industry standard protocols: OpenID Connect and OAuth 2.0. The service is standards-compliant, but any two implementations of these protocols can have subtle differences. The information in this guide will be useful to you if you write your code by directly sending and handling HTTP requests, rather than by using an open source library. We recommend that you read this page before you dive into the details of each specific protocol. But if you are already familiar with Azure AD B2C, you can go straight to the protocol reference guides.

The basics

Every app that uses Azure AD B2C needs to be registered in your B2C directory in the Azure portal. The app registration process collects and assigns a few values to your app:

  • An Application ID that uniquely identifies your app.
  • A Redirect URI or package identifier that can be used to direct responses back to your app.
  • A few other scenario-specific values. For more, learn how to register your application.

After you register your app, it communicates with Azure AD by sending requests to the v2.0 endpoint:

https://login.microsoftonline.com/common/oauth2/v2.0/authorize
https://login.microsoftonline.com/common/oauth2/v2.0/token

In nearly all OAuth and OpenID Connect flows, four parties are involved in the exchange:

OAuth 2.0 Roles

  • The authorization server is the Azure AD v2.0 endpoint. It securely handles anything related to user information and access. It also handles the trust relationships between the parties in a flow. It is responsible for verifying the user's identity, granting and revoking access to resources, and issuing tokens. It is also known as the identity provider.
  • The resource owner is typically the end user. It is the party that owns the data, and it has the power to allow third parties to access that data or resource.
  • The OAuth client is your app. It is identified by its Application ID. It is usually the party that end users interact with. It also requests tokens from the authorization server. The resource owner must grant the client permission to access the resource.
  • The resource server is where the resource or data resides. It trusts the authorization server to securely authenticate and authorize the OAuth client. It also uses bearer access tokens to ensure that access to a resource can be granted.

Policies

Arguably, Azure AD B2C policies are the most important features of the service. Azure AD B2C extends the standard OAuth 2.0 and OpenID Connect protocols by introducing policies. These allow Azure AD B2C to perform much more than simple authentication and authorization. Policies fully describe consumer identity experiences, including sign-up, sign-in and profile editing. Policies can be defined in an administrative UI. They can be executed by using a special query parameter in HTTP authentication requests. Policies are not standard features of OAuth 2.0 and OpenID Connect, so you should take the time to understand them. For more information, see the Azure AD B2C policy reference guide.

Tokens

The Azure AD B2C implementation of OAuth 2.0 and OpenID Connect makes extensive use of bearer tokens, including bearer tokens that are represented as JSON web tokens (JWTs). A bearer token is a lightweight security token that grants the "bearer" access to a protected resource. The bearer is any party that can present the token. Azure AD must first authenticate a party before it can receive a bearer token. But if the required steps are not taken to secure the token in transmission and storage, it can be intercepted and used by an unintended party.

Some security tokens have a built-in mechanism that prevents unauthorized parties from using them, but bearer tokens do not have this mechanism. They must be transported in a secure channel, such as transport layer security (HTTPS). If a bearer token is transmitted outside a secure channel, a malicious party can use a man-in-the-middle attack to acquire the token and use it to gain unauthorized access to a protected resource. The same security principles apply when bearer tokens are stored or cached for later use. Always ensure that your app transmits and stores bearer tokens in a secure manner.

For additional bearer token security considerations, see RFC 6750 Section 5.

Further details on the different types of tokens used in Azure AD B2C are available in the Azure AD token reference.

Protocols

When you're ready to review some example requests, you can start with one of the following tutorials. Each one corresponds to a particular authentication scenario. If you need help in determining which flow is right for you, check out the types of apps you can build by using Azure AD B2C.