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

Azure AD App Registration Manifest
What Azure AD App Registration Manifest? Azure AD App Registration Manifest is JSON file that contains a definition of all the attributes of an application object in the Microsoft identity platform. It also serves as a mechanism for updating the application object. Here is an example Azure AD App Re...
2022-03-29, 4866🔥, 0💬

Capture Google OpenID Connect Authentication Response
How to capture the Google OpenID Connect Authentication Response? If you are use the Google-OpenID-Connect-Test-Pag e.htmltest Web form using "response_type=id_token" to test the implicit flow, you can capture the id_token value with the browser. 1. Run Google-OpenID-Connect-Test-Pag e.htmlin a Web ...
2022-03-29, 1088🔥, 0💬

Add App Secret Keys on Azure AD
How to add a secret key in an app registration on Azure AD? Secret keys in an app registration on Azure AD are used to authenticate the access token request in the authentication code flow. You can add a new secret key in your app registration on Azure AD by following these steps: 1. Sign in to the ...
2022-03-29, 1084🔥, 0💬

Azure AD App Registrations (Preview)
What Azure AD App Registrations (Preview)? Azure AD App Registrations (Preview) is the new application registration management tool replacing the old App Registrations. App Registrations (Preview) offers the following new functionalities: Quickstart - Tutorials and guides for developers. Branding - ...
2022-03-29, 1042🔥, 0💬

Common Errors in Reported by EpubCheck
Where to find tutorials on Common Errors Reported by EpubCheck? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Common Errors Reported by EpubCheck. ERROR(PKG-006) - Mimetype Not the First ERROR(PKG-005) - Mimetype Has Extra Field ERROR(OPF-030...
2022-02-09, 1132🔥, 0💬

Hello-3.2.epub - EPUB 3.2 Simple Demonstration
How to build a simple EPUB file to demonstrate some EPUB 3.2 features? You can follow this tutorial to build a simple EPUB file to demonstrate some EPUB 3.2 features Create 5 required files and place them according to the following structure: ├── mimetype ├── META-INF │   └── container.xml ├─...
2022-02-09, 676🔥, 0💬

Decode Google OpenID Connect id_token
How to decode the id_token value received from Google OpenID Connect authentication response? According to the "RFC 7519 - JWT (JSON Web Token)" standard, the "id_token" value received from Google OpenID Connect authentication response should be decoded as below: Splitting the encoded string into 3 ...
2022-02-04, 2991🔥, 0💬

Build Authorization Code Flow with Google OpenID Connect
How to implement the OpenID Authorization Code Flow with Google OpenID Connect service? If you want to implement the OpenID Authorization Code Flow (also called the Server Flow) in your Web application to use Google OpenID Connect service, you should follow these steps: 1. Building the Google OpenID...
2022-02-04, 1229🔥, 0💬

Validate Google OpenID Connect id_token
How to validate the id_token value received from Google OpenID Connect authentication response? As you can see from the previous tutorials, you can easily decode the "id_token" value received from Google OpenID Connect authentication response using a simple PHP script. After decoding, you can get al...
2022-02-04, 1201🔥, 0💬

Google OpenID Connect Access Token Request Test Page
How to build an Google OpenID Connect Access Token Request Test page? The Access Token Request is the second call to the Google OpenID Connect 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 p...
2022-02-04, 1168🔥, 0💬

Build Implicit Flow with Google OpenID Connect
How to implement the OpenID Implicit Flow with Google OpenID Connect service? If you want to implement the OpenID Implicit Flow in your Web application to use Google OpenID Connect service, you should follow these steps: 1. Building the Google OpenID Connect Sign-on authentication request: Register ...
2022-02-04, 1109🔥, 0💬

Hello-3.1.epub - Content File: content.xhtml
How to create a content file like content.xhtml for an EPUB 3.1 book? At least one content file, like content.xhtml, is required for an EPUB 3.1 book in the book ZIP container. It provides the content of the book. Here is the requirement on a content file: 1. A content file must be named with .xhtml...
2021-08-11, 1711🔥, 0💬

Hello-3.1.epub - Navigation File: navigation.xhtml
How to create a navigation file like navigation.xhtml for an EPUB 3.1 book? At least one navigation file, like navigation.xhtml, is required for an EPUB 3.1 book in the book ZIP container. It provides navigation information like a table of contents of the book. Here is the requirement on a navigatio...
2021-08-11, 1710🔥, 0💬

What Are Authentication Flows
What are authentication flows specified in OpenID Connect? OpenID Connect supports 3 authentication data flows: 1. Authorization Code Flow - The Authorization Code Flow is more complex to implement. But it is more secure. In the Authorization Code Flow, only a short authorization code is returned to...
2021-08-11, 1157🔥, 0💬

Components Involved in OpenID Connect Authentication
What are components involved in OpenID Connect authentication flows? There are 4 components involved in a typical OpenID Connect authentication flow: 1. OpenID Provider (OP) - The OpenID Connect authentication service provider, who provides services to authenticate the end user. For example, Microso...
2021-08-11, 1129🔥, 0💬

OpenID Connect Authorization Code Flow
What is the authentication code flow specified in OpenID Connect? The Authorization Code Flow is most secure authentication flow specified in OpenID Connect. Here are the steps of the Authorization Code flow given in the OpenID Connect 1.0 specification: Rely Party prepares an authentication request...
2021-08-11, 1101🔥, 0💬

id_token Online Decode Tool
Is there any online tool to decode an id_token string? There are several good online tools you can use to decode an id_token string. For example, go to jwt.io . Copy and paste your id_token string in the input box on left, for example: eyJhbGciOiJIUzI1NiIsInR5cCI6Ik pXVCJ9.eyJuYW1lIjoiSm9lIERvZSIsIm...
2021-06-20, 2194🔥, 0💬

Get Application ID from Azure AD
How to register and get an application ID from Azure AD? The first step to use Azure AD is to register and get an Application ID: 1. Sign in to the Azure portal with admin permissions. 2. Click "Azure Active Directory" from the left menu. And select one Azure AD service like "default directory", if ...
2021-06-20, 5038🔥, 0💬

Azure AD, B2B and B2C
What are differences between Azure AD, B2B and B2C? Azure AD actually offers 3 different services: Azure AD - Provide authentication services to users in your own organization. Azure AD B2B - Provide authentication services to users in your own organizations and your external partner organizations. ...
2021-06-20, 1202🔥, 0💬

What Is Azure Active Directory
What Is Azure Active Directory (Azure AD)? Azure Active Directory (Azure AD) is Microsoft's multi-tenant, cloud-based directory, and identity management service. Azure AD combines core directory services, application access management, and identity protection in a single solution, offering a standar...
2021-06-20, 1055🔥, 0💬

Decode Azure AD v1 id_token
How to decode the id_token value received from Azure AD v1.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...
2021-05-16, 1662🔥, 0💬

Azure AD v1 id_token Decoded Example
Where to find an Azure AD v1.0 id_token decoded example? Here is an example of an "id_token" value returned from Azure AD v1.0 after Base64URL decoded: Header = { "typ": "JWT", "alg": "RS256", "x5t": "i6lGk3FZzxRcUb2C3nEQ7syHJlY", "kid": "i6lGk3FZzxRcUb2C3nEQ7syHJlY" } Body = { "aud": "ef1da9d4-ff77...
2021-05-16, 1410🔥, 0💬

Build Implicit Flow with Azure AD v1
How to implement the OpenID Implicit Flow with Azure AD v1.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 v1.0 Sign-on authentication request: Register your Web application to the A...
2021-05-16, 1324🔥, 0💬

Validate Azure AD v1 id_token
How to validate the id_token value received from Azure AD v1.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...
2021-05-16, 1318🔥, 0💬

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