<< < 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, 1188🔥, 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, 1185🔥, 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, 1183🔥, 0💬

"docker container exec --tty --interactive ... /bin/sh"
How to run a Shell session interactively on a Running Container using the "docker container exec -tty --interactive ... /bin/sh" command? If the running container is based on a Linux system, we can definitely run a Shell session interactively on a Running Container using the "docker container exec -...
2021-10-02, 1183🔥, 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, 1183🔥, 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, 1183🔥, 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, 1183🔥, 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, 1182🔥, 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, 1181🔥, 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, 1180🔥, 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, 1179🔥, 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, 1178🔥, 0💬

Relation between HTML and DTD
What Is the relation between HTML and DTD? DTD (Document Type Definition) is a language based on XML to you to define a specific type of XML documents. Since the XHTML serialization of an HTML document is a specific type of XML documents, you can use DTD to define the structure of XHTML. In fact, XH...
2024-02-09, 1177🔥, 0💬

'break' Statement in Repeating Statement Blocks
How to use the "break" statement in a repeating statement block in Python code? The "break" statement can be used in a repeating statement block like "for" and "while" loops to terminate the loop immediately. When a "break" statement is interpreted, Python will terminate execution of the nearest "fo...
2018-02-28, 1176🔥, 0💬

'break' Statement in Repeating Statement Blocks
How to use the "break" statement in a repeating statement block in Python code? The "break" statement can be used in a repeating statement block like "for" and "while" loops to terminate the loop immediately. When a "break" statement is interpreted, Python will terminate execution of the nearest "fo...
2018-02-28, 1176🔥, 0💬

Values Submitted in HTML Radio Button Fields
What Are the Values Submitted on Radio Button Fields? A "radio" button input field does not allow viewers to enter any input values directly. If a form is submitted, "radio" button input fields will be submitted with values based on the following rules: If a "radio" button is not pushed, no value wi...
2017-04-15, 1175🔥, 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, 1174🔥, 0💬

Initiate Azure AD v2 Authentication Request
How to initiate Azure AD v2.0 Sign-On Authentication Request? The Azure AD v2.0 Sign-On 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...
2019-05-03, 1173🔥, 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, 1172🔥, 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, 1172🔥, 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, 1172🔥, 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, 1171🔥, 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, 1171🔥, 0💬

Defining and Using Python Code Modules
Where to find tutorials on Defining and Using Python Code Modules? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Defining and Using Python Code Modules: What Is Module 'import' Module Loading Statement Modules Are Objects Too What Is Module P...
2022-09-24, 1170🔥, 0💬

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