<< < 41 42 43 44 45 46 47 48 49 50 51 > >>   Sort: Date

Initiate Azure AD v2 Access Token Request
How to initiate Azure AD v2.0 Access Token Request? The Azure AD v2.0 Access Token Request should be initiated from your application Web server. This is why the authentication code flow is more secure than the implicit flow, because the "id_token" value will be received by Web server directly from t...
2019-03-27, 1203🔥, 0💬

HTML 'body' Tag/Element
What Is the HTML "body" Tag/Element? The "body" element is the third element you need to learn. The "body" element is used to provide content of the HTML document. Here are some rules about the "body" tag/element: The body element is a second level element. The body element must be the second child ...
2024-01-19, 1202🔥, 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, 1201🔥, 0💬

"docker container inspect" - Inspect Container Configuration
How to display and inspect container's configuration using the "docker container inspect" command? The "docker container inspect" command allows you to display and inspect the container's configuration in JSON formation. 1. Create a new container from the "openjdk" image: fyicenter$ docker container...
2021-10-02, 1201🔥, 0💬

Azure AD v2 id_token Is Smaller
Where Azure AD v2.0 id_token is smaller than v1.0? Azure AD v2.0 id_token is smaller than v1.0, because the number of default claims (properties) are reduced in Azure AD v2.0 id_tokens as shown in the table below: Azure AD v2.0 Azure AD v1.0 ver=2.0 ver=1.0 rh iss iss sub sub aud aud exp exp iat iat...
2019-04-03, 1201🔥, 0💬

Smallest Valid HTML5 Document
What is a Smallest Valid HTML5 Document? If you are interested to see the smallest, but valid, HTML5 document, look at this one: &lt;!DOCTYPE html&gt; &lt;html&gt;&lt;he ad&gt;&lt;title&gt ;Hello&lt;/title&gt;&a mp;lt;/head&gt;&lt;bod y&gt;&lt;foot...
2024-03-07, 1199🔥, 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, 1199🔥, 0💬

Values Submitted in HTML Image Button Fields
What Are the Values Submitted on Image Button Fields? An "image" button input field does not allow viewers to enter any input values directly. But if an "image" button is clicked, the mouse position on the image button will be submitted with other input values to the processing program based on the ...
2017-04-04, 1199🔥, 0💬

commercial-paper Sample Network
Where to find tutorials on Hyperledger Fabric commercial-paper Sample Network? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Fabric commercial-paper Sample Network. Objectives of commercial-paper Tutorials Start basic-network for ...
2019-12-19, 1198🔥, 0💬

HTML 'html' Tag/Element
What Is the HTML "html" Tag/Element? The "html" element is the first element you need to learn. The "html" element is used to enclose the entire HTML document. Here are some rules about the "html" element: The html element is the only top level element. The html element is also called the root eleme...
2024-02-18, 1197🔥, 0💬

Node.js SDK and Client Application
What is Node.js SDK and how to use it to write client applications? Hyperledger Fabric Node.js SDK is a set of libraries that allows you to write client applications to interact with chaincode in Node.js language. A Hyperledger Fabric network can be viewed as virtual operating system. Once it is up ...
2020-02-07, 1197🔥, 0💬

HTML 'style' Tag/Element
What Is an HTML "style" Tag/Element? A "style" element is an optional sub-element of the "head" element. A "link" element is used to specify Cascading Style Sheet (CSS) entries. Here is good example of a style element: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XH...
2024-01-10, 1196🔥, 0💬

Deploy Orderer with Default Configuration
How to Deploy the Orderer Docker Image with the Default Configuration? You can follow this tutorial to deploy the Orderer Docker Image with the Default Configuration. 1. Create a new Docker Compose YAML file, docker-compose-default.yaml: $ cd fabric-orderer $ cp docker-compose-orderer.yaml docker-co...
2019-05-14, 1194🔥, 0💬

CouchDB Server Admin Web Portal
What is CouchDB Server Admin Web Portal? If you are running BYFN (Build Your First Network) with the CouchDB option, the World State of each peer node is stored a CouchDB server running as Docker container. The CouchDB server supports an admin web portal that allows you manage the CouchDB server, it...
2019-04-19, 1194🔥, 0💬

Create PaperNet Log Console
How to Create PaperNet Log Console using the "logspout" command? If you are the administrator from MagnetoCorp and want to Create Log Console to monitor PaperNet Hyperledger Fabric network, you can follow this tutorial. 1. Create a new terminal window and run the monitordocker.sh script under the ma...
2019-12-19, 1193🔥, 0💬

Integration with Azure AD B2C User Flow
How to integrate your application with a user flow defined as a policy in my Azure AD B2C directory? After you have tested your user flow policy in your Azure AD B2C directory, you need to gather required information and integrate your application to the user flow. 1. Metadata document - Open the us...
2019-02-18, 1193🔥, 0💬

What Is Hyperledger
What Is Hyperledger? Hyperledger is an open source project for developing blockchain-based application frameworks and tools. Currently, Hyperledger is working on the following frameworks: Hyperledger Burrow v.0.21.0, 2019 - Hyperledger Burrow is a blockchain client including a built-to-specification...
2019-04-19, 1192🔥, 0💬

What Is Python Module 'json'
What Is Python module "json"? "json" is a Python internal module that allows to encode and code JSON strings. Here are some important properties and functions provided by the "json" module: &gt;&gt;&gt; import json &gt;&gt;&gt; json.dumps() # serializes a given object into a ...
2018-10-13, 1191🔥, 0💬

HTML 'link' Tag/Element
What Is an HTML "link" Tag/Element? A "link" element is an optional sub-element of the "head" element. A "link" element is used to specify Cascading Style Sheet (CSS) file. Here is good example of a link element: &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE html PUBLIC "-//W...
2024-01-10, 1189🔥, 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, 1189🔥, 0💬

Generate Genesis Block for Orderer
How to generate the Generate Genesis Block for the Orderer peer? When running a Hyperledger Fabric network, orderer peers also maintains a special blockchain called the orderer system channel (or ordering system channel). If you are starting a new orderer peer, you need to generate the genesis block...
2019-08-23, 1189🔥, 0💬

Tools for Viewing XHTML 1.0 Documents
What Tools can I Use to View XHTML Documents? The basic tool you need to view XHTML documents is any Web browser, like Google Chrome, Internet Explorer (IE) or Mozilla FireFox. The following tutorial shows you how to view a XHTML document with : Write an XHTML document and save it as hello.html. Run...
2023-11-02, 1188🔥, 0💬

"docker container create" - Create Container Command
How to create new containers on the Docker Engine with "docker container create" command? The "docker container list" command allows you to create new containers from Docker images. Here is a list of options supported by "docker container create": fyicenter$ docker container create --help Usage: doc...
2023-03-28, 1187🔥, 0💬

Introduction of HTML5
Where to find tutorials in understanding what is HTML5? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is HTML5. Clear answers are provided for frequently asked questions on what is HTML5; writing and viewing HTML5 documents...
2024-03-07, 1186🔥, 0💬

<< < 41 42 43 44 45 46 47 48 49 50 51 > >>   Sort: Date