<< < 25 26 27 28 29 30 31 32 33 34 35 > >>   Sort: Rank

Hyperledger Composer Playground
Where to find tutorials on Hyperledger Composer Playground. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Composer Playground. What Is Hyperledger Composer Playground Start Hyperledger Composer Playground What Is Basic Sample Busi...
2019-04-13, 1141🔥, 0💬

Update Anchor Peer of Each BYFN Organization
How to Update Anchor Peer of Each BYFN Organization? You can follow this tutorial to Update Anchor Peer of Each BYFN Organization. 1. Update the default peer as the anchor peer: bash-4.4# echo $CORE_PEER_ADDRESS peer0.org2.example.com:7051 bash-4.4# peer channel update -o orderer.example.com:7050 -c...
2019-04-13, 1617🔥, 0💬

Install Chaincode on BYFN Peers
How to install chaincode on BYFN peers? You can follow this tutorial to install chaincode on BYFN peers manually. 1. Verify the chaincode source file on the BYFN CLI container: $ docker exec -it cli bash bash-4.4# bash-4.4# echo $GOPATH /opt/gopath bash-4.4# ls -l $GOPATH/src/github.com/chainco de/ch...
2019-04-13, 1280🔥, 0💬

BYFN Chaincode - chaincode_example02.go
What is the chaincode in Golang used in BYFN (Build Your First Network)? The chaincode in Golang used in BYFN (Build Your First Network) is located in the chaincode_example02.go file and located in hyperledger-binaries/fabric-sa mples/chaincode/chaincode_exam ple02/go/directory: $ cd hyperledger-bina...
2019-04-13, 1134🔥, 0💬

Docker Client (or CLI)
Where to find tutorials on Docker Client (or CLI)? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team as Introduction to Docker Client (or CLI). What Is Docker Client (or CLI) "docker" Commands vs. Management Commands "docker help" Commands   ⇒ What ...
2019-04-12, 1198🔥, 0💬

"docker container rm" - Remove Container
How to remove a container from the Docker Engine with "docker container rm" command? If a container is no longer needed, you can remove it from the Docker Engine to save space using the "docker container rm" command. 1. Run "docker container list --all" command. You see 2 containers created from the...
2019-04-12, 979🔥, 0💬

Azure AD B2C "id_token" from Google
Where to find an Azure AD B2C "id_token" example from Google as an external identity provider? Here is an Azure AD B2C "id_token" example from Google as an external identity provider: Header: { "typ": "JWT", "alg": "RS256", "kid": "X5eXk4xyojNFum1kl2Ytv8dlNP4-c 57dO6QGTVBwaNk"} Claims: { "exp": 1547...
2019-04-11, 1431🔥, 0💬

What Is Ledger Peer Operation RESTful API
What is Ledger Peer Operation RESTful API? Ledger Peer Operation RESTful API is RESTful Web service provided by a ledger peer. It is different than and separated from the primary ledger Web service provided by the ledger peer. Ledger Peer Operation RESTful API exposes the following functionalities: ...
2019-04-11, 938🔥, 0💬

"docker container create image_name" Command
How to create a new container from an image with "docker container create image_name" command? You can create a new container from an image with "docker container create image_name" command by giving the image name. 1. Get the image name with the "docker image list" command. fyicenter$ docker image ...
2019-04-06, 1146🔥, 0💬

What Is Docker Client (or CLI)
What is Docker Client, or CLI (Command Line Interface)? Docker Client, or CLI (Command Line Interface), is a command line tool that allows you to manage the Docker environment, including the Docker Engine, Containers, Images, and Registries. When you install Docker, make sure that you have Docker CE...
2019-04-06, 1121🔥, 0💬

"docker image" - Manage Images
How to manage images with "docker image" commands? A Docker image is a binary file used to build containers. Images are used to store and ship applications. You can use "docker image" commands to manage Docker images. Here is a list of sub-commands supported by "docker image": fyicenter$ docker imag...
2019-04-05, 907🔥, 0💬

Dump Azure AD v2.0 Authentication Response
How to build a PHP script to dump Azure AD 2.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 a...
2019-04-03, 31362🔥, 0💬

Build Implicit Flow with Azure AD v2
How to implement the OpenID Implicit Flow with Azure AD v2.0 service? If you want to implement the OpenID Implicit Flow in your Web application to use Azure AD service, you should follow these steps: 1. Building the Azure AD v2.0 Sign-on authentication request: Register your Web application to the A...
2019-04-03, 1593🔥, 0💬

Decode Azure AD v2 id_token
How to decode the id_token value received from Azure AD v2.0 authentication response? According to the "RFC 7519 - JWT (JSON Web Token)" standard, the "id_token" value received from Azure AD authentication response should be decoded as below: Splitting the encoded string into 3 components: Header, B...
2019-04-03, 1453🔥, 0💬

Azure AD v2 id_token Decoded Example
Where to find an Azure AD v2.0 id_token decoded example? Here is an example of an "id_token" value returned from Azure AD v2.0 after Base64URL decoded: Header = { "typ": "JWT", "alg": "RS256", "kid": "1LTMzakihiRla_8z2BEJVXeWMqo" } Body = { "ver": "2.0", "iss": "https://login.microsoftonline .com/918...
2019-04-03, 1445🔥, 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💬

What Is Alpine Linux Docker Image
What is Alpine Linux Docker Image? Alpine Linux Docker Image is a minimal Docker image of the Alpine Linux operating system. with only 5 MB in size. You can use Alpine Linux as the base image to build new Docker images for your own applications. Main features of Alpine Linux are: SMALL - Alpine Linu...
2019-04-03, 1091🔥, 0💬

"docker image inspect" - Inspect Image
How to Inspect an Image in the local repository with "docker image inspect" command? You can get more information from an image using the "docker image inspect" command with a given image name or ID: fyicenter$ docker image inspect hello-world [ { "Id": "sha256:fce289e99eb9bca977dae1 36fbe2a82b6b7d4c...
2019-03-31, 982🔥, 0💬

Alpine Linux Docker Image
Where to find tutorials on Alpine Linux Docker Image? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Alpine Linux Docker Image. What Is Alpine Linux Docker Image "docker search alpine" - Search for Alpine Image "docker image pull alpine" - Pul...
2019-03-29, 1058🔥, 0💬

Adding Claims in Azure AD v2 id_token
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claims in Azure AD v2.0 id_tokens, you need to modify your application registration in Azure AD. 1. Log in the Azure portal. 2. Select the Azure Active Directory service, and then select App registrations ...
2019-03-27, 5974🔥, 0💬

Access Token Response Received from Azure AD v2
How to process the access token response received from Azure AD v2.0 service? After Azure AD v2.0 service receives an access token request from your Web server script, it will process the request and returns the access token response directly. In order for your Web server script to process the acces...
2019-03-27, 2583🔥, 0💬

Validate Azure AD v2 id_token
How to validate the id_token value received from Azure AD v2.0 authentication response? As you can see from the previous tutorials, you can easily decode the "id_token" value received from Azure AD authentication response using a simple PHP script. After decoding, you can get all information about t...
2019-03-27, 1947🔥, 0💬

Build Authorization Code Flow with Azure AD v2
How to implement the OpenID Authorization Code Flow with Azure AD v2.0 service? If you want to implement the OpenID Authorization Code Flow in your Web application to use Azure AD service, you should follow these steps: 1. Building the Azure AD v2.0 Sign-on authentication request: Register your Web ...
2019-03-27, 1614🔥, 0💬

Azure AD v2 Access Token Request
What is the Azure AD v2.0 Access Token Request? If you want to implement the authentication code flow to integrate your application with Azure AD v2.0, you need to have a good understanding of the Azure AD v2.0 access token request, which is the second call you have to make in the authentication cod...
2019-03-27, 1441🔥, 0💬

<< < 25 26 27 28 29 30 31 32 33 34 35 > >>   Sort: Rank