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

Authentication Flows with Azure AD v1
What are Authentication Flows Supported by Azure AD v1.0 service? Azure AD v1.0 service supports 3 Authentication Flows: 1. Implicit Flow - The Implicit Flow is simple to implement. But it is less secure. Authentication is done in a single call to Azure AD service, which returns the "id_token" conta...
2022-05-05, 1505🔥, 0💬

Calibre for Windows
Where to find tutorials on using Calibre for Windows? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on using Calibre for Windows. What Is Calibre Download and Install Calibre for Windows Setup Calibre for Windows Open and Read EPUB Book with Cal...
2018-08-06, 1502🔥, 0💬

Google OpenID Connect Metadata Document
What is the Google OpenID Connect Metadata Document? Google OpenID Connect Metadata Document is a JSON document that contains most of the information required for an app to perform sign-in. This includes information such as the URLs to use and the location of the service's public signing keys. You c...
2021-03-07, 1501🔥, 0💬

What Is EPUB
What Is EPUB? EPUB is an e-book file format with the extension .epub that can be downloaded and read on devices like smartphones, tablets, computers, or e-readers. It is a technical standard published by the International Digital Publishing Forum (IDPF). The term is short for electronic publication ...
2022-07-26, 1478🔥, 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💬

What Is EPUB File Structure
What Is the EPUB file structure? An EPUB file is actually a ZIP archive file that contains the following types of files in sub-folders: HTML, image and audio files for book contents. CSS files for presentation. OPF files for book structure and navigations. Other resource and meta files. Here is a li...
2022-07-26, 1456🔥, 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💬

Introduction to EPUB
Where to find tutorials as Introduction to EPUB. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team as Introduction to EPUB. What Is EPUB What Is EPUB File Structure What Is OPF   ⇒ What Is EPUB ⇐ EPUB Tutorials ⇑⇑ EPUB Tutorials
2018-04-14, 1452🔥, 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 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 Error: Invalid Reply URL
Why Azure AD v2.0 display this error message: AADSTS50011: The reply url specified in the request does not match the reply URLsconfigured for the application? The root cause of this error is that you forgot the add the "redirect_uri" in your authentication request to Application ID settings on Azure...
2019-05-03, 1431🔥, 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, 1430🔥, 0💬

Validate Google OpenID Connect id_token Signature
How to validate the id_token signature received from Google OpenID Connect authentication response? You can try to validate the "id_token" signature with your own code logic in these steps: 1. Take out the "kid" value from "Header" component of the "id_token". This will be used to identify the publi...
2019-02-05, 1423🔥, 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, 1415🔥, 0💬

__sectionTitle__
Where to find tutorials as Introduction to OpenID. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team as Introduction to OpenID. What Is OpenID What Is OpenID Connect OpenID Usage Statistics Differences between OpenID and OAuth   ⇒ What Is OpenID ⇐ ...
2019-01-20, 1404🔥, 0💬

OpenID Usage Statistics
How many Web sites/services are using OpenID? According to builtwith.com, there are about 1,250,000 Web sites/services are using OpenID as of August 2018: OpenID Usage Statistics   ⇒ Differences between OpenID and OAuth ⇐ What Is OpenID Connect ⇑ Introduction to OpenID ⇑⇑ OpenID Tutorials
2019-01-20, 1404🔥, 0💬

Simple EPUB Reader
Where to find tutorials on Simple EPUB Reader? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on using Simple EPUB Reader. What Is Simple EPUB Reader Run Simple EPUB Reader Simple EPUB Reader Failed on EPUB 3.0 Simple EPUB Reader Failed on EPUB 2...
2019-01-01, 1398🔥, 0💬

Setup Calibre for Windows
How to Setup and Run Calibre for Windows? You can follow this tutorial to setup and run Calibre for your Windows computer. 1. Search and run Calibre on your Windows computer. You see the welcome and setup screen. 2. Take the default language and library location, and click Next. You see device setti...
2018-08-06, 1397🔥, 0💬

Azure AD v1 Error: Invalid Reply URL
Why Azure AD v1.0 display this error message: AADSTS50011: The reply url specified in the request does not match the reply URLsconfigured for the application? The root cause of this error is that you forgot the add the "redirect_uri" in your authentication request to Application ID settings on Azure...
2022-05-01, 1394🔥, 0💬

Process Google OpenID Connect Access Token Request
How to the Google OpenID Connect access token Request is process by Google OpenID Connect service? When Google OpenID Connect 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...
2019-02-05, 1350🔥, 0💬

Access Token Response Received from Google OpenID Connect
How to process the access token response received from Google OpenID Connect service? After Google OpenID Connect 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 p...
2019-02-05, 1345🔥, 0💬

What Is Calibre
What Is Calibre? Calibre is a powerful and easy to use e-book manager. Users say it’s outstanding and a must-have. It’ll allow you to do nearly everything and it takes things a step beyond normal e-book software. It’s also completely free and open source and great for both casual users and computer...
2018-08-06, 1343🔥, 0💬

Read MOBI Book with Kindle for PC
How to Read MOBI Book with Kindle for PC? MOBI is one of the book file formats supported by Kindle for PC. You can follow this tutorial to open and read a MOBI book with "Kindle for PC". 1. Go to eBook sample website . 2. Click "MOBI" under "The Metamorphosis, by Franz Kafka (Jackson Theme)" to down...
2018-07-13, 1336🔥, 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💬

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