<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Rank

Initiate Azure AD v2 Authentication Request
How to initiate Azure AD v2.0 Sign-On Authentication Request? The Azure AD v2.0 Sign-On Authentication Request must be initiated from the end user's Web browser, because the Azure AD service needs to communicate with the Web browser to make sure that the end user is signed on to an AD (Active Direct...
2019-05-03, 1173🔥, 0💬

Azure AD v2 Authentication Request Test Page
How to build an Azure AD 2.0 Authentication Request Test page? The Authentication Request is the first call to the Azure AD service. You can build a simple Web form page to test different behavior of the Authentication Request. Here is an example, Azure-AD-2-Authentication-Requ est-Test.html:&lt...
2019-05-03, 1156🔥, 0💬

Azure AD B2C "id_token" from Google
Where to find an Azure AD B2C "id_token" example from Google as an external identity provider? Here is an Azure AD B2C "id_token" example from Google as an external identity provider: Header: { "typ": "JWT", "alg": "RS256", "kid": "X5eXk4xyojNFum1kl2Ytv8dlNP4-c 57dO6QGTVBwaNk"} Claims: { "exp": 1547...
2019-04-11, 1431🔥, 0💬

Dump Azure AD v2.0 Authentication Response
How to build a PHP script to dump Azure AD 2.0 Authentication Response? If you are use the Azure-AD-Authentication-Reques t-Test.htmltest Web form, you need to write a server side script to dump the Azure AD Authentication Response. Here is an example of PHP script, openID_receiver.php, that dumps a...
2019-04-03, 31363🔥, 0💬

Build Implicit Flow with Azure AD v2
How to implement the OpenID Implicit Flow with Azure AD v2.0 service? If you want to implement the OpenID Implicit Flow in your Web application to use Azure AD service, you should follow these steps: 1. Building the Azure AD v2.0 Sign-on authentication request: Register your Web application to the A...
2019-04-03, 1593🔥, 0💬

Decode Azure AD v2 id_token
How to decode the id_token value received from Azure AD v2.0 authentication response? According to the "RFC 7519 - JWT (JSON Web Token)" standard, the "id_token" value received from Azure AD authentication response should be decoded as below: Splitting the encoded string into 3 components: Header, B...
2019-04-03, 1453🔥, 0💬

Azure AD v2 id_token Decoded Example
Where to find an Azure AD v2.0 id_token decoded example? Here is an example of an "id_token" value returned from Azure AD v2.0 after Base64URL decoded: Header = { "typ": "JWT", "alg": "RS256", "kid": "1LTMzakihiRla_8z2BEJVXeWMqo" } Body = { "ver": "2.0", "iss": "https://login.microsoftonline .com/918...
2019-04-03, 1445🔥, 0💬

Azure AD v2 id_token Is Smaller
Where Azure AD v2.0 id_token is smaller than v1.0? Azure AD v2.0 id_token is smaller than v1.0, because the number of default claims (properties) are reduced in Azure AD v2.0 id_tokens as shown in the table below: Azure AD v2.0 Azure AD v1.0 ver=2.0 ver=1.0 rh iss iss sub sub aud aud exp exp iat iat...
2019-04-03, 1182🔥, 0💬

Adding Claims in Azure AD v2 id_token
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claims in Azure AD v2.0 id_tokens, you need to modify your application registration in Azure AD. 1. Log in the Azure portal. 2. Select the Azure Active Directory service, and then select App registrations ...
2019-03-27, 5975🔥, 0💬

Access Token Response Received from Azure AD v2
How to process the access token response received from Azure AD v2.0 service? After Azure AD v2.0 service receives an access token request from your Web server script, it will process the request and returns the access token response directly. In order for your Web server script to process the acces...
2019-03-27, 2584🔥, 0💬

Validate Azure AD v2 id_token
How to validate the id_token value received from Azure AD v2.0 authentication response? As you can see from the previous tutorials, you can easily decode the "id_token" value received from Azure AD authentication response using a simple PHP script. After decoding, you can get all information about t...
2019-03-27, 1947🔥, 0💬

Build Authorization Code Flow with Azure AD v2
How to implement the OpenID Authorization Code Flow with Azure AD v2.0 service? If you want to implement the OpenID Authorization Code Flow in your Web application to use Azure AD service, you should follow these steps: 1. Building the Azure AD v2.0 Sign-on authentication request: Register your Web ...
2019-03-27, 1614🔥, 0💬

Azure AD v2 Access Token Request
What is the Azure AD v2.0 Access Token Request? If you want to implement the authentication code flow to integrate your application with Azure AD v2.0, you need to have a good understanding of the Azure AD v2.0 access token request, which is the second call you have to make in the authentication cod...
2019-03-27, 1441🔥, 0💬

Azure AD v2 Access Token Request Test Page
How to build an Azure AD 2.0 Access Token Request Test page? The Access Token Request is the second call to the Azure AD service in the authentication code flow to retrieve the id_token with the authentication code received from the first call. You can build a simple Web form page to test different ...
2019-03-27, 1240🔥, 0💬

Initiate Azure AD v2 Access Token Request
How to initiate Azure AD v2.0 Access Token Request? The Azure AD v2.0 Access Token Request should be initiated from your application Web server. This is why the authentication code flow is more secure than the implicit flow, because the "id_token" value will be received by Web server directly from t...
2019-03-27, 1188🔥, 0💬

Process Azure AD v2 Access Token Request
How to the Azure AD v2.0 access token Request is process by Azure AD service? When Azure AD service receives an access token Request from a Web server, it will: Verify if the "client_id" value in the request is valid. If not, display an error message page to the end user. Take the "code" value from ...
2019-03-27, 1167🔥, 0💬

User Sources in Azure AD B2C
What are sources of users managed in my Azure AD B2C directory? Azure AD B2C directory can manage users from different sources of identity providers. 1. Log in to your Azure AD B2C account with admin privilege. 2. Click "Azure Active Directory" from the left menu. 3. Select a directory, if you have ...
2019-03-20, 1330🔥, 0💬

Register Azure AD Application in Azure AD B2C
How to register my application as an Azure AD application in my Azure AD B2C account? If you want to register an application as an Azure AD application in your Azure AD B2C account, your application should be: Able to allow users who are members and their identities are managed locally in the Azure ...
2019-03-20, 1201🔥, 0💬

Azure AD Application Integration in Azure AD B2C
How to integrate my application with to Azure AD service? I have registered it as an Azure AD application. If you have registered your application as an Azure AD application, you can integrate your application with Azure AD service using OpenID Connect protocol with the following information: 1. "En...
2019-03-20, 1197🔥, 0💬

What Is Azure AD B2C
What is Azure AD (Active Directory) B2C (Business To Consumer)? Azure AD B2C provides authentication services to users in your own organizations, your external partner organizations, and any users with Microsoft ID or other IDs like Google or Facebook. Azure Active Directory (Azure AD) B2C is an ide...
2019-03-20, 1125🔥, 0💬

Application Registration on Azure AD B2C
How to register applications in Azure AD B2C? If you login to your Azure AD B2C account, you will see two places to register applications. 1. Register applications in "Azure Active Directory" - Your Azure AD B2C account also acts like a normal Azure AD account. You can register your application as a...
2019-03-20, 1086🔥, 0💬

Register Azure AD B2C as a Google Application
How to register Azure AD B2C as Google client application? I want Google users to be able to login to my Azure AD B2C applications. If want Google users to be able to login to your Azure AD B2C applications, you need to register Azure AD B2C as Google client application: 1. Sign in to the Google Dev...
2019-03-08, 1834🔥, 0💬

User Flow Policies on Azure AD B2C
What are User Flow Policies on Azure AD B2C? A user flow policy on Azure AD B2C is a set of rules that define UI behavior of when your end user performs one of the following flows: 1. "Sign-up or sign-in" - The UI page displayed for your end users to sign-up or sign-in to your application using Azur...
2019-03-08, 1681🔥, 0💬

Requirements to Add External Identity Providers
What are requirements to add external identity providers? I want to allow users from Google or Facebook to login to my application. Azure AD B2C acts as a proxy of other external identity providers. Currently, it supports the following identity providers: Microsoft - Microsoft personal cloud logins ...
2019-03-08, 1468🔥, 0💬

<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Rank