<< < 8 9 10 11 12 13 14 15 16 17 18 > >>   Sort: Rank

Kindle for PC
Where to find tutorials on using Kindle for PC? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on using Kindle for PC. What Is Kindle for PC Download and Install Kindle for PC Run and Register Kindle for PC Sign Out from Kindle for PC Read MOBI B...
2022-07-01, 1220🔥, 0💬

Download and Install Kindle for PC
How to Download and Install Kindle for PC? You can follow this tutorial to download and install Kindle for PC on your Windows computer. 1. Go to Kindle download site . 2. Click "Download for PC" button. You see download started. 3. Save the download file to \fyicenter\KindleForPC-install er-1.21.4801...
2022-07-01, 1151🔥, 0💬

Run and Register Kindle for PC
How to Run and Register Kindle for PC? You can follow this tutorial to run and register Kindle for PC on your Windows computer. 1. Search and run "Kindle for PC" on your computer. You see the Amazon sign screen. This is needed to register your Kindle for PC with an Amazon account. 2. Sign in with yo...
2022-07-01, 1135🔥, 0💬

json_encode() Function in PHP
Where to get the detailed description of the json_encode() Function in PHP? Here is the detailed description of the json_encode() Function in PHP. Description - The json_encode() function generates a JSON text string that represents the given PHP value. Syntax - string json_encode ( mixed $value [, ...
2022-06-29, 2924🔥, 3💬

💬 2022-06-29 grzegorz: &lt;?php '"lotto" = multi multi('10' => 1, '10.000' => echo json_encode(multi multi); # The above example will outp # # {011...

💬 2022-01-20 gg: @@ -0,0 +1,27 @@ +-----BEGIN PRIVATE KEY----- +MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKc wggSjAgEAAoIBAQCwZfi/rzC804cE0+t4EmfYG8RUffZT...

💬 2022-01-19 beesbuzz.biz: Basic usage: Allowed parameters: page-url: The base URL to use for this page. Defaults to window.location add-urls: Additional U...

Build "sleep" Image from Alpine
How to Build my "sleep" Docker image from the Alpine image? I want the container to sleep for 10 hours. If you want to build a new Docker image that can be started with a 10-hour sleep command, you can follow this tutorial. 1. Create a "Dockerfile" file with 2 instructions: fyicenter$ mkdir sleep fy...
2022-06-28, 12662🔥, 1💬

Hello-3.1.epub - "container.xml" File
How to create the "container.xml" file of an EPUB 3.1 book? The "container.xml" file of an EPUB 3.1 book is a required file in the book ZIP container. It specifies a package file of any name, for example: package.opf. Here is the requirement on the "container.xml" file: 1. The "container.xml" file m...
2022-05-31, 2561🔥, 0💬

Hello-3.1.epub - Package File: package.opf
How to create a package file like package.opf for an EPUB 3.1 book? At least one package file, like package.opf, is required for an EPUB 3.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 package f...
2022-05-31, 1644🔥, 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, 1594🔥, 0💬

What Is id_token
What is id_token used in OpenID Connect protocol? "id_token" is Base64URL encoded string returned from the authentication service provider after the user successfully finishes the authentication process. "id_token" follows the "RFC 7519 - JWT (JSON Web Token)" to encode authentication information. Y...
2022-05-31, 1204🔥, 0💬

What Is the Authentication Claim in id_token
What is the authentication claim in an id_token? The authentication claim is the information carried in the id_token body component. OpenID Connect 1.0 specification defines the following primary properties on the authentication claim: "iss" - Required. Identifies the "Issuer" of this authentication...
2022-05-31, 1081🔥, 0💬

Azure AD v1 OpenID Metadata Document
What is the Azure AD v1.0 OpenID Metadata Document? Azure AD v1.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....
2022-05-05, 3209🔥, 0💬

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

Application ID Settings on Azure AD
What settings are associated an application ID on Azure AD? Once you Website is registered on Azure AD with an Application ID, you can open and modify its settings described below: 1. Sign in to the Azure portal with admin permissions. 2. Go back to "Azure Active Directory &gt; default directory...
2022-05-05, 1309🔥, 0💬

Initiate Azure AD v1 Authentication Request
How to initiate Azure AD v1.0 Sign-On Authentication Request? The Azure AD Sign-On v1.0 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...
2022-05-05, 1196🔥, 0💬

Azure AD v1 Sign-On Authentication Request
What is the Azure AD v1.0 Sign-On Authentication Request? Before deciding which Azure AD v1.0 authentication flow you want to implement in your Web application, you need to have a good understanding of the Azure AD sign-on authentication request, which is the first call you have to make in any authe...
2022-05-05, 1168🔥, 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, 1396🔥, 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, 1291🔥, 0💬

Azure AD v1 Authentication Request Test Page
How to build an Azure AD v1.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-Authentication-Reques t-Test.html:&lt;...
2022-05-01, 1184🔥, 0💬

Process Azure AD v1 Authentication Request
How to the Azure AD v1.0 Sign-On Authentication Request is process by Azure AD service? When Azure AD v1.0 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 ...
2022-05-01, 1118🔥, 0💬

Authentication Response Received from Azure AD v1
How to process the authentication response received from Azure AD v1.0 service after sending a sign-on authentication request? After Azure AD v1.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...
2022-05-01, 1115🔥, 0💬

ERROR(PKG-006) - Mimetype Not the First
How to fix the "ERROR(PKG-006) - Mimetype file entry is missing or is not the first file ..." error? When you validate a EPUB 2.0 package with EpubCheck, you may see the following error: C:\fyicenter&gt; java -jar epubcheck.jar Error-Mimetype-Not-First-2.0.e pubValidating using EPUB version 2.0....
2022-04-21, 812🔥, 0💬

What Is EPUB 3.2 Specification
What Is EPUB 3.2 Specification? EPUB 3.2 Specification is the 3.2 version of EPUB specification, released on May 8, 2019. EPUB 3.2 is considered as a successor to both EPUB 3.0.1 and EPUB 3.1. EPUB 3.1 did not receive wide adoption due to incompatibilities with previous versions, so EPUB 3.2 was dev...
2022-04-21, 579🔥, 0💬

Changes on EPUB OCF 3.2
What are changed made on EPUB Open Container Format (OCF) 3.2 specification? EPUB Open Container Format (OCF) 3.2 specification has the following changes. 1. Encryption and Compression Order - The order of encryption and compression has been clarified. The new rules clarify that compression is not n...
2022-04-21, 553🔥, 0💬

Changes on EPUB Content Documents 3.2
What are changed made on EPUB Content Documents 3.2 specification? EPUB Content Documents 3.2 specification has the following changes. 1. The dated references to HTML and SVG have been replaced with undated references. 2. Replacement of EPUB Style Sheets with CSS References. 3. Prioritization of Aut...
2022-04-21, 518🔥, 0💬

<< < 8 9 10 11 12 13 14 15 16 17 18 > >>   Sort: Rank