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

Hello-2.0.epub - Package File: package.opf
How to create a package file like package.opf for an EPUB 2.0.1 book? At least one package file, like package.opf, is required for an EPUB 2.0.1 book in the book ZIP container. It defines required meta data and specifies 2 required content files. Here is the requirement on a package file: 1. A packa...
2023-03-28, ∼2311🔥, 0💬

Hello-3.1.epub Displayed in Calibre
How to display Hello-3.1.epub in Calibre? Once you have Hello-3.1.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...
2019-01-12, ∼2310🔥, 0💬

3Pigs6-3.1.epub - XHTML pre Element
Does EPUB support XHTML "pre" elements? Yes. EPUB 3.1 does support XHTML "pre" elements. EPUB readers will display "pre" elements with a monospace font. Text lines within "pre" elements will be displayed without wrapping. So if you have long lines in "pre" elements, text will be truncated on the rig...
2018-12-26, ∼2295🔥, 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, ∼2294🔥, 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, ∼2271🔥, 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, ∼2258🔥, 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, ∼2247🔥, 0💬

Simple EPUB Reader Failed on EPUB 3.0
Why Simple EPUB Reader is showing an empty page on "The War Poems Of Siegfried Sassoon" EPUB 3.0 book? Simple EPUB Reader does not support all features of the EPUB 3.0 specification. For example: 1. Run "Simple EPUB Reader" and open "The War Poems Of Siegfried Sassoon" EPUB book. 2. Click the naviga...
2022-05-31, ∼2246🔥, 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, ∼2232🔥, 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, ∼2222🔥, 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, ∼2217🔥, 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, ∼2216🔥, 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, ∼2174🔥, 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, ∼2167🔥, 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, ∼2156🔥, 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, ∼2118🔥, 0💬

Dump Azure AD v1 Authentication Response
How to build a PHP script to dump Azure AD v1.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 ...
2022-05-01, ∼2109🔥, 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, ∼2101🔥, 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, ∼2098🔥, 0💬

Register Azure AD B2C Application
How to register my application as an Azure AD B2C application in my Azure AD B2C account? If you want to register an application as an Azure AD B2C 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 th...
2019-03-08, ∼2092🔥, 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, ∼2078🔥, 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, ∼2076🔥, 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, ∼2057🔥, 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, ∼2051🔥, 0💬

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