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

Validate Azure AD v1 id_token Signature
How to validate the id_token signature received from Azure AD v1.0 authentication response? You can use some existing libraries to perform the Azure AD "id_token" signature validation using libraries of different programming languages as suggested in "Azure Active Directory access tokens" article" ....
2021-05-16, 1257🔥, 0💬

Hello-2.0.epub Created with WinRAR
How to create Hello-2.0.epub with WinRAR? I have all required files to create Hello-2.0.epub. To create the EPUB 2.0.1 example, Hello-2.0.epub, you need to collect all files mentioned from previous tutorials: |-- mimetype |-- package.opf |-- content.xhtml |-- navigation.xml |-- META-INF |-- containe...
2021-04-15, 2866🔥, 0💬

Hello-2.0.epub Validation by EpubCheck
How to validate an EPUB 2.0.1 file with EpubCheck 4.0.2? If you want to validate an EPUB 2.0.1 book file, you can try this command: C:\fyicenter&gt; java -jar epubcheck-4.0.2\epubcheck.jar Hello-2.0.epub Validating using EPUB version 2.0.1 rules. No errors or warnings detected. epubcheck complet...
2021-04-15, 1923🔥, 0💬

EPUB 2.0 Package Metadata
Where to find tutorials on EPUB 2.0 Package Metadata? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on EPUB 2.0 Package Metadata. What Is EPUB 2.0 Package Metadata EPUB 2.0 Metadata - dc:identifier Element EPUB 2.0 Metadata - dc:title Element EP...
2021-04-15, 1913🔥, 0💬

Hello-2.0.epub - Navigation File: navigation.xml
How to create a navigation file like navigation.xml for an EPUB 2.0.1 book? At least one navigation file, like navigation.xml, is required for an EPUB 2.0.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-04-15, 1811🔥, 0💬

Hello-2.0.epub Displayed in Calibre
How to display Hello-2.0.epub in Calibre? Once you have Hello-2.0.epub created, you can follow this tutorial to open and read it in Calibre. 1. Search and run Calibre on your Windows computer. You see the Calibre main screen. 2. Click "Add books" icon. You see the open file screen. 3. Locate and sel...
2021-04-15, 1721🔥, 0💬

Hello-2.0.epub - Content File: content.xhtml
How to create a content file like content.xhtml for an EPUB 2.0.1 book? At least one content file, like content.xhtml, is required for an EPUB 2.0.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 .x...
2021-04-04, 1824🔥, 0💬

Differences between OpenID and OAuth
What are the differences between OpenID and OAuth? Here is the main difference between OpenID and OAuth: OpenID is an open standard for authentication - Allows users to be authenticated to a Website using a third-party identify management service. OAuth is an open standard for authorization - Provid...
2021-03-21, 1152🔥, 0💬

Application Registration for Google OpenID
How to register applications for Google OpenID Connect? Here are steps to register your application in your Google account. 1. Go to https://console.developers.goo gle.com. 2. Click "Credentials" from the left menu. You see a list of client application projects and their client credentials registere...
2021-03-21, 1146🔥, 0💬

Requirements for Google OpenID Connect Integration
What are requirements for OpenID Connect Integration? If you want to integrate your application with Google OpenID Connect interface, you need to prepare the following: You need a Google account. A Gmail account is good enough. Register your application as a client application project in your Google...
2021-03-21, 1134🔥, 0💬

Authentication Flows with Google OpenID Connect
What are Authentication Flows Supported by Google OpenID Connect service? Google OpenID Connect 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 Google OpenID Connect service, which...
2021-03-21, 1049🔥, 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, 1483🔥, 0💬

Authentication Response Received from Google OpenID Connect
How to process the authentication response received from Google OpenID Connect service after sending an authentication request? After Google OpenID Connect service receives an authentication request from the end user's Web browser, it will process the request and redirect the Web browser to the "red...
2021-03-07, 1211🔥, 0💬

Process Google OpenID Connect Authentication Request
How to the Google OpenID Connect Authentication Request is process by Google OpenID Connect service? When Google OpenID Connect service receives a Authentication Request from an end user's Web browser, it will: Verify if the "client_id" value in the request is valid. If not, display an error message...
2021-03-07, 1129🔥, 0💬

Google OpenID Connect Authentication Request
What is the Google OpenID Connect Authentication Request? Before deciding which authentication flow you want to implement in your Web application, you need to have a good understanding of the Google OpenID Connect authentication request, which is the first call you have to make in any authentication...
2021-03-07, 1107🔥, 0💬

Initiate Google OpenID Connect Authentication Request
How to initiate Google OpenID Connect Authentication Request? The Google OpenID Connect v1.0 Authentication Request must be initiated from the end user's Web browser, because the Google OpenID Connect service needs to communicate with the Web browser to make sure that the end user is signed on to a ...
2021-03-07, 1081🔥, 0💬

Azure AD v2 OpenID Metadata Document
What is the Azure AD v2.0 OpenID Metadata Document? Azure AD v2.0 OpenID Metadata Document is an online 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....
2021-01-09, 1538🔥, 0💬

Authentication Flows with Azure AD v2
What are Authentication Flows Supported by Azure AD v2.0 service? Azure AD v2.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...
2021-01-09, 1307🔥, 0💬

Azure AD Integration Versions 1 and 2
What are differences of v1.0 and v2.0 of Azure AD Integration? The main difference between v1.0 and v2.0 of Azure AD Integration is who can sign in to your application: Azure AD v1.0 allows only work and school accounts to sign in to your application. Azure AD v2.0 allows work and school accounts fr...
2021-01-09, 1182🔥, 0💬

Azure AD v2 Sign-On Authentication Request
What is the Azure AD v2.0 Sign-On Authentication Request? Before deciding which Azure AD v2.0 authentication flow you want to implement in your Web application, you need to have a good understanding of the Azure AD v2.0 Sign-on authentication request, which is the first call you have to make in any ...
2021-01-09, 1063🔥, 0💬

About dev.FYIcenter.com
dev.FYIcenter.com is a Website for software developer looking for software development technologies, programming tutorials, career information, and so on. Just browse through the site, you will find the best information our team has prepared for you. Other FYIcenter.com Resources: Software QA Resour...
2019-11-22, 7807🔥, 3💬

💬 2019-11-22 Nick: Hi there, I hope my original email didn't get lost in the big old internet black hole, but in case it did I thought I'd follow u...

💬 2018-12-06 FYIcenter.com: @David, the broken link is replaced. Thanks for your suggestion.

💬 2018-11-30 David Eubanks: Hi, I found a broken link on this page - http://dev.fyicenter.com/resource/18 _Best_Color_Tools_For_Web_Designers. htmlIt’s th...

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, 1397🔥, 0💬

Process Azure AD v2 Authentication Request
How to the Azure AD v2.0 Sign-On Authentication Request is process by Azure AD service? When Azure AD service receives a Sign-On Authentication Request from an end user's Web browser, it will: Verify if the "client_id" value in the request is valid. If not, display an error message page to the end u...
2019-05-03, 1222🔥, 0💬

Authentication Response Received from Azure AD v2
How to process the authentication response received from Azure AD v2.0 service after sending a sign-on authentication request? After Azure AD v2.0 service receives a sign-on authentication request from the end user's Web browser, it will process the request and redirect the Web browser to the "redir...
2019-05-03, 1188🔥, 0💬

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