<< < 37 38 39 40 41 42 43 44 45 46 47 > >>   ∑:1482  Sort:Date

Azure AD B2C Integration
Where to find tutorials on Azure AD B2C Integration? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Azure AD B2C Integration. What Is Azure AD B2C Application Registration on Azure AD B2C User Sources in Azure AD B2C Register Azure AD Applicat...
2019-03-27, ∼1823🔥, 0💬

HTML 'textarea' Element Attributes
What Are the Attributes of a "textarea" Element? There are several commonly used attributes for a "textarea" element: rows="n" - Required attribute. Used to specify the number of rows of the text input area. cols="n" - Required attribute. Used to specify the number of columns of the text input area....
2017-04-04, ∼1823🔥, 0💬

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

Watch "orderer" Container Log
How to watch the log file of the "orderer" Container? The "orderer" Container plays an important role in a Hyperledger Fabric network. You can follow this tutorial to watch its log file: 1. Set up a new terminal on the hosting system to follow the log file of the "orderer" container: $ docker logs -...
2020-07-07, ∼1821🔥, 0💬

HTML 'del' and 'ins' Tags/Elements
What Are HTML "del" and "ins" Tags/Elements? "del" and "ins" elements are inline elements that you can use to specify text to be treated as deleted text and inserted text respectively. Here are basic rules about "del" and "ins" elements: "del" and "ins" elements are inline elements. "del" and "ins" ...
2017-04-28, ∼1820🔥, 0💬

'for ... in ... else' Repeating Statement Blocks
How to enter "for ... in ... else" statements block in Python code? "for ... in ... else" statement blocks allow you to execute the main statement block repeatedly. When "for ... in ... else" statement blocks are interpreted, the "for" statement block will be executed repeatedly for each item in the...
2023-05-09, ∼1818🔥, 0💬

Deleting Existing Rows in PHP
How To Delete Existing Rows in a Table in PHP? If you want to remove a row from a table, you can use the DELETE statement with a WHERE clause to identify the row. The following sample script deletes one row: &lt;?php include "mysql_connection.php"; $sql = "DELETE FROM fyi_links WHERE id = 1102";...
2016-10-19, ∼1818🔥, 0💬

Two HTML Elements Overlapping Each Other
Can Two HTML Elements Partially Overlap Each Other? No, two elements can not partially overlap each other. One element must be completely enclosed inside the other element. See the following two examples: &lt;!-- Valid: "em" is enclosed inside "strong" --&gt; &lt;p&gt;There was once ...
2024-02-28, ∼1816🔥, 0💬

White Space Characters Handling Rules in HTML
How Exactly White Space Characters Are Ignored? White space characters will be processed (ignored) based where they are located: White space characters will be ignored between block elements. White space characters will be preserved in element "pre". White space characters will be preserved in CDATA...
2024-02-21, ∼1814🔥, 2💬

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

Azure AD Integration v1.0
Where to find tutorials on Azure AD Integration v1.0? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Azure AD Integration v1.0. Authentication Flows with Azure AD v1 Azure AD v1 OpenID Metadata Document Azure AD v1 Sign-On Authentication Reque...
2019-02-18, ∼1813🔥, 0💬

OpenID Connect Authentication Flows
Where to find tutorials on OpenID Connect Authentication Flows. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on OpenID Connect Authentication Flows. Components Involved in OpenID Connect Authentication What Are Authentication Flows OpenID Conne...
2019-01-20, ∼1813🔥, 0💬

HTML Input Field 'label' Tag/Element
What Is a "label" Tag/Element? A "label" element is an inline element that you can use to define a label for a form input field. Here are basic rules about a "label" element: "label" elements are inline elements. "label" elements can only be used as sub-elements of "form" elements. A "label" element...
2017-04-01, ∼1813🔥, 0💬

Initiate Google OpenID Connect Access Token Request
How to initiate Google OpenID Connect Access Token Request? The Google OpenID Connect 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...
2019-02-05, ∼1812🔥, 0💬

Hyper Link Points to a PDF File
What Happens If a Hyper Link Points to a PDF File? If you want to build a hyper link to allow visitors to access a PDF file by clicking a hyper link, you can put the URL of the PDF file directly in the "href" attribute of the hyper link. If a visitor clicks the link, the browser will fetch the PDF f...
2017-07-03, ∼1811🔥, 0💬

Build Authorization Code Flow with Google OpenID Connect
How to implement the OpenID Authorization Code Flow with Google OpenID Connect service? If you want to implement the OpenID Authorization Code Flow (also called the Server Flow) in your Web application to use Google OpenID Connect service, you should follow these steps: 1. Building the Google OpenID...
2022-02-04, ∼1809🔥, 0💬

"docker" Commands vs. Management Commands
What are the differences between "docker" commands and management commands? The "docker" client tool supports two sets of commands: 1. Management Commands - A "docker" management command is actually a group of sub-commands that can be used to manage a single data entity used by the Docker Engine. Fo...
2021-08-13, ∼1807🔥, 0💬

Components Involved in OpenID Connect Authentication
What are components involved in OpenID Connect authentication flows? There are 4 components involved in a typical OpenID Connect authentication flow: 1. OpenID Provider (OP) - The OpenID Connect authentication service provider, who provides services to authenticate the end user. For example, Microso...
2021-08-11, ∼1807🔥, 0💬

Hyper Link Points to a ZIP File
What Happens If a Hyper Link Points to a ZIP File? If you want to build a hyper link to allow visitors to access a ZIP file by clicking a hyper link, you can put the URL of the ZIP file directly in the "href" attribute of the hyper link. If a visitor clicks the link, the browser will fetch the PDF f...
2017-07-03, ∼1805🔥, 0💬

submit-transaction.js - Submit Chaincode Transaction
How to write a Node.js script to submit a transaction defined in the Invoke method of a chaincode? Here is sample Node.js script, submit-transaction.js, that uses a given user identity from the local wallet to submit a transaction on chaincode. /* Copyright (c) FYIcenter.com */ 'use strict'; const {...
2019-04-22, ∼1804🔥, 0💬

HTML Description 'meta' Tag/Element
What Is the Description "meta" Tag/Element? The description "meta" element is a special meta element that provides a short description about the HTML document. The description "meta" element must include the "name" attribute as, name="description". Here is an example: &lt;meta name="description"...
2017-06-28, ∼1804🔥, 0💬

Download and Install Golang SDK
How to download and install Golang SDK for Hyperledger Fabric? You can follow this tutorial to download and install Golang SDK for Hyperledger Fabric. 1. Download Golang SDK: $ export GOPATH=~/go $ echo $GOPATH /home/fyicenter/go $ go get github.com/hyperledger/fabric- sdk-go2. Verify Golang SDK pac...
2020-01-21, ∼1802🔥, 0💬

'class' - Class Definition Statements
How to use the "class" statement to define a new function in Python? You can use the "class" statement to define a new class in Python with the following syntax: def class_name(base_class): class properties assignment statement ... method definition statement ... Here is a good example of "class" st...
2018-05-08, ∼1802🔥, 0💬

registerUser.js - Register User to ca.example.com
What is the user registration Node.js program registerUser.js? User registration Node.js program registerUser.js registers an user "user1" to ca.example.com. 1. View the registerUser.js source code: $ cp ~/hyperledger-binaries/fabric- samples/fabcar/javascript$ more registerUser.js /* * SPDX-License...
2020-01-04, ∼1801🔥, 0💬

<< < 37 38 39 40 41 42 43 44 45 46 47 > >>   ∑:1482  Sort:Date