<< < 2 3 4 5 6 7 8 9 10 11 12 > >>   Sort: Rank

Azure AD App Registration Manifest
What Azure AD App Registration Manifest? Azure AD App Registration Manifest is JSON file that contains a definition of all the attributes of an application object in the Microsoft identity platform. It also serves as a mechanism for updating the application object. Here is an example Azure AD App Re...
2022-03-29, 3094👍, 0💬

Add App Secret Keys on Azure AD
How to add a secret key in an app registration on Azure AD? Secret keys in an app registration on Azure AD are used to authenticate the access token request in the authentication code flow. You can add a new secret key in your app registration on Azure AD by following these steps: 1. Sign in to the ...
2022-03-29, 934👍, 0💬

Capture Google OpenID Connect Authentication Response
How to capture the Google OpenID Connect Authentication Response? If you are use the Google-OpenID-Connect-Test-Pag e.htmltest Web form using "response_type=id_token" to test the implicit flow, you can capture the id_token value with the browser. 1. Run Google-OpenID-Connect-Test-Pag e.htmlin a Web ...
2022-03-29, 906👍, 0💬

Azure AD App Registrations (Preview)
What Azure AD App Registrations (Preview)? Azure AD App Registrations (Preview) is the new application registration management tool replacing the old App Registrations. App Registrations (Preview) offers the following new functionalities: Quickstart - Tutorials and guides for developers. Branding - ...
2022-03-29, 893👍, 0💬

What Is Blockchain
What Is Blockchain? A blockchain is a growing list of data blocks that are cryptographically chained together. A blockchain has the following main features: A data block has a header and a list of data transactions. Merkle hash tree is used to store a fingerprint of all transactions in the block hea...
2022-03-29, 786👍, 0💬

"docker container ..." Commands
Where to find tutorials on how to use "docker container ..." commands? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on how to use "docker container ..." commands. "docker container ..." - Manage Containers "docker container list" - List Contain...
2022-02-19, 1085👍, 0💬

What Is Smart Contract
What Is Smart Contract? Smart Contract was originally introduced by Nick Szabo to digitally facilitate, verify, or enforce the negotiation or performance of a contract between parties. Today, smart contract is used to represent any executable code deployed in a distributed ledger application. The di...
2022-02-19, 1075👍, 0💬

Business Network Development Concepts
Where to find tutorials on Business Network Development Concepts. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Business Network Development Concepts. Business Network Source Code Architecture Hyperledger Composer Model File Hyperledger Compo...
2022-02-19, 714👍, 0💬

Business Network CTO Modeling Language
Where to find tutorials on Business Network CTO Modeling Language. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Business Network CTO Modeling Language. What Is CTO Modeling Language CTO Language Statements "participant" CTO Statement Syntax ...
2022-02-19, 714👍, 0💬

Business Network Source Code Architecture
What Is Business Network Source Code Architecture? Business Network Source Code Architecture can be summarized in the following diagram: Hyperledger Composer offers tools to help you developing hyperledger application, called business network, with following source code files: Model Files (*.cto) - ...
2022-02-19, 693👍, 0💬

Common Errors in Reported by EpubCheck
Where to find tutorials on Common Errors Reported by EpubCheck? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Common Errors Reported by EpubCheck. ERROR(PKG-006) - Mimetype Not the First ERROR(PKG-005) - Mimetype Has Extra Field ERROR(OPF-030...
2022-02-09, 640👍, 0💬

Hello-3.2.epub - EPUB 3.2 Simple Demonstration
How to build a simple EPUB file to demonstrate some EPUB 3.2 features? You can follow this tutorial to build a simple EPUB file to demonstrate some EPUB 3.2 features Create 5 required files and place them according to the following structure: ├── mimetype ├── META-INF │   └── container.xml ├─...
2022-02-09, 427👍, 0💬

Decode Google OpenID Connect id_token
How to decode the id_token value received from Google OpenID Connect authentication response? According to the "RFC 7519 - JWT (JSON Web Token)" standard, the "id_token" value received from Google OpenID Connect authentication response should be decoded as below: Splitting the encoded string into 3 ...
2022-02-04, 1803👍, 0💬

Validate Google OpenID Connect id_token
How to validate the id_token value received from Google OpenID Connect authentication response? As you can see from the previous tutorials, you can easily decode the "id_token" value received from Google OpenID Connect authentication response using a simple PHP script. After decoding, you can get al...
2022-02-04, 980👍, 0💬

Build Implicit Flow with Google OpenID Connect
How to implement the OpenID Implicit Flow with Google OpenID Connect service? If you want to implement the OpenID Implicit Flow in your Web application to use Google OpenID Connect service, you should follow these steps: 1. Building the Google OpenID Connect Sign-on authentication request: Register ...
2022-02-04, 980👍, 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, 972👍, 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, 960👍, 0💬

PATH Directories of Windows Container
How to see the PATH directories of Windows image? I want to know what programs I can run on the container. One way to see the PATH directories of a Windows image is to run the CMD shell interactively. Then run the SET sub-command in the shell. C:\fyicenter&gt; docker run --name windows --entrypo...
2022-02-02, 600👍, 0💬

Build a Dummy Windows Image
How to do a dummy image from the "microsoft/dotnet-samples" Docker image? If you want play with the "microsoft/dotnet-samples" Docker image, you should build a dummy Docker image using it as the base. 1. Create a Dockerfile to define the new image: C:\fyicenter&gt; type DummyImage FROM microsoft...
2022-02-02, 457👍, 0💬

Commands Available on Windows Container
What commands are avaible on a Windows container? Can I run the "DIR" command? No. You can not run the "DIR" command on a Windows container directly, because "DIR" is not really a Windows command. "DIR" is actually sub-command valid in the "CMD" shell environment. On a Windows container, you can onl...
2022-02-02, 404👍, 0💬

Run PowerShell Commands in Dockerfile
How to run PowerShell Commands in Dockerfile to change Windows Docker images? When building a new Windows image, you can only run executable programs that are already installed on the image. A Windows image usually provides programs in the C:\Windows\System32 directory, including two commonly used p...
2022-01-24, 4824👍, 0💬

Run CMD Commands in Dockerfile
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows image, you can only run executable programs that are already installed on the image. A Windows image usually provides programs in the C:\Windows\System32 directory, including two commonly used programs...
2022-01-24, 2514👍, 0💬

"openjdk" Docker Image for Windows
What is the "openjdk" Docker Image for Windows? "openjdk" Docker Image for Windows provides a Docker container of as a Java development environment. 1. Create a container from the "openjdk" image. C:\fyicenter&gt; docker container create --name java --tty --interactive openjdk 2. Start the conta...
2022-01-24, 615👍, 0💬

Visual Studio Tutorials
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about Visual Studio: Getting Started with Visual Studio What Is Visual Studio Download and Run Visual ...
2022-01-22, 5106👍, 1💬

💬 2022-01-22 perlancar: # This file was a use strict; use warnings; use ExtUtils::Mak my %WriteMakefileA "ABSTRACT" => " "AUTHOR" => "pe "CONFIGURE_REQU...

<< < 2 3 4 5 6 7 8 9 10 11 12 > >>   Sort: Rank