This repo contains a set of Microsoft Entra Verified ID samples (former Azure AD Verifiable Credentials)
Sample | Description |
---|---|
1-python-api-idtokenhint | Python sample for using the VC Request Service API to issue and verify verifiable credentials with a credential contract which allows the VC Request API to pass in a payload for the Verifiable Credentials |
Microsoft provides a simple to use REST API to issue and verify verifiable credentials. You can use the programming language you prefer to the REST API. Instead of needing to understand the different protocols and encryption algoritms for Verifiable Credentials and DIDs you only need to understand how to format a JSON structure as parameter for the VC Request API.
To call the VC Client API to start the issuance process, the VC Request API needs a JSON structure payload like below.
{
"authority": "did:ion: ...of the Issuer",
"includeQRCode": true,
"registration": {
"clientName": "the verifier's client name"
},
"callback": {
"url": "https://contoso.com/api/issuer/issuanceCallback",
"state": "you pass your state here to correlate it when you get the callback",
"headers": {
"api-key": "API key to help protect your callback API"
}
},
"type": "your credentialType",
"manifest": "https://verifiedid.did.msidentity.com/v1.0/3c32ed40-8a10-465b-8ba4-0b1e86882668/verifiableCredential/contracts/VerifiedCredentialExpert",
"pin": {
"value": "012345",
"length": 6
},
"claims": {
"firstName": "Megan",
"lastName": "Bowen"
}
}
- authority - is the DID identifier for your registered Verifiable Credential from portal.azure.com.
- includeQRCode - If you want the VC Client API to return a
data:image/png;base64
string of the QR code to present in the browser. If you selectfalse
, you must create the QR code yourself (which is not difficult). - registration.clientName - name of your app which will be shown in the Microsoft Authenticator
- callback.url - a callback endpoint in your application. The VC Request API will call this endpoint when the issuance is completed.
- callback.state - A state value you provide so you can correlate this request when you get callback confirmation
- callback.headers - Any HTTP Header values that you would like the VC Request API to pass back in the callbacks. Here you could set your own API key, for instance
- type - the name of your credentialType. This value is configured in the rules file.
- manifest - url of your manifest for your VC. This comes from your defined Verifiable Credential in portal.azure.com
- pin - If you want to require a pin code in the Microsoft Authenticator for this issuance request. This can be useful if it is a self issuing situation where there is no possibility of asking the user to prove their identity via a login. If you don't want to use the pin functionality, you should not have the pin section in the JSON structure.
- claims - optional, extra claims you want to include in the VC.
In the response message from the VC Request API, it will include a URL to the request which is hosted at the Microsoft VC request service, which means that once the Microsoft Authenticator has scanned the QR code, it will contact the VC Request service directly and not your application directly. Your application will get a callback from the VC Request service via the callback.
{
"requestId": "799f23ea-524a-45af-99ad-cf8e5018814e",
"url": "openid://vc?request_uri=https://verifiedid.did.msidentity.com/v1.0/abc/verifiablecredentials/request/178319f7-20be-4945-80fb-7d52d47ae82e",
"expiry": 1622227690,
"qrCode": "data:image/png;base64,iVBORw0KGgoA<SNIP>"
}
In your callback endpoint, you will get a callback with the below message when the QR code is scanned. This callback is typically used to modify the UI, hide the QR code to prevent scanning again and show the pincode to use when the user wants to accept the Verifiable Credential.
{
"requestStatus":"request_retrieved",
"requestId":"9463da82-e397-45b6-a7a2-2c4223b9fdd0",
"state": "...what you passed as the state value..."
}
Once the VC is issued, you get a second callback which contains information if the issuance of the verifiable credential to the user was succesful or not.
This callback is typically used to notify the user on the issuance website the process is completed and continue with whatever the website needs or wants the user to do.
{
"requestStatus":"issuance_successful",
"requestId":"9463da82-e397-45b6-a7a2-2c4223b9fdd0",
"state": "...what you passed as the state value..."
}
{
"requestStatus":"issuance_failed",
"requestId":"9463da82-e397-45b6-a7a2-2c4223b9fdd0",
"state": "...what you passed as the state value...",
"error": {
"code":"IssuanceFlowFailed",
"message":"issuance_service_error",
}
}
When the issuance fails this can be caused by several reasons. The following details are currently provided in the error part of the response:
Message | Definition |
---|---|
fetch_contract_error | The user has canceled the flow |
issuance_service_error | VC Issuance service was not able to validate requirements / something went wrong on Microsoft AAD VC Issuance service side. |
unspecified_error | Something went wrong that doesn’t fall into this bucket |
To call the VC Request API to start the verification process, the application creates a JSON structure like below. Since the WebApp asks the user to present a VC, the request is also called presentation request
.
{
"authority": "did:ion: did-of-the-Verifier",
"includeQRCode": true,
"registration": {
"clientName": "the verifier's client name",
"purpose": "the purpose why the verifier asks for a VC"
},
"callback": {
"url": "https://contoso.com/api/verifier/presentationCallback",
"state": "you pass your state here to correlate it when you get the callback",
"headers": {
"api-key": "API key to help protect your callback API"
}
},
"includeReceipt": false,
"requestedCredentials": [
{
"type": "your credentialType",
"purpose": "the purpose why the verifier asks for a VC",
"acceptedIssuers": [ "did:ion: ...of the Issuer" ],
"configuration": {
"validation": {
"allowRevoked": true,
"validateLinkedDomain": true
}
}
}
]
}
Much of the data is the same in this JSON structure, but some differences needs explaining.
- authority vs acceptedIssuers - The Verifier and the Issuer may be two different entities. For example, the Verifier might be a online service, like a car rental service, while the DID it is asking for is the issuing entity for drivers licenses. Note that
acceptedIssuers
is a collection of DIDs, which means you can ask for multiple VCs from the user coming from different trusted issuers. - requestedCredentials - please also note that the
requestedCredentials
is a collection too, which means you can ask to create a presentation request that contains multiple DIDs. - includeReceipt - if set to true, the
presentation_verified
callback will contain thereceipt
element.
In your callback endpoint, you will get a callback with the below message when the QR code is scanned.
When the QR code is scanned, you get a short callback like this.
{
"requestStatus":"request_retrieved",
"requestId":"c18d8035-3fc8-4c27-a5db-9801e6232569",
"state": "...what you passed as the state value..."
}
Once the VC is verified, you get a second, more complete, callback which contains all the details on what whas presented by the user.
{
"requestStatus":"presentation_verified",
"requestId":"c18d8035-3fc8-4c27-a5db-9801e6232569",
"state": "...what you passed as the state value...",
"subject": "did:ion: ... of the VC holder...",
"issuers": [
{
"issuer": "did:ion of the issuer of this verifiable credential ",
"type": [ "VerifiableCredential", "your credentialType" ],
"claims": {
"lastName":"Bowen",
"firstName":"Megan"
},
"credentialState": {
"revocationStatus": "VALID"
},
"domainValidation": {
"url": "https://did.woodgrovedemo.com"
}
}
],
"receipt":{
"id_token": "...JWT Token of VC...",
"vp_token": "...JWT Token of VP..."
}
}
}
Some notable attributes in the message:
- claims - parsed claims from the VC
- credentialState.revocationStatus - indicates the current revocation status at the time of the presentaion
- domainValidation - If you asked for domain validation via passing
validateLinkedDomain
true in the request, you will get the validated domain name in the response. - receipt.id_token - The JWT token of the presentation response
- receipt.vp_token - The JWT token of the credential in the presentation response. In the token, the
vp.verifiableCredential
contains the VCs for the presented credentials.
Before you can run any of these samples make sure your environment is setup correctly. You can follow the setup instructions here
For more information, see MSAL.NET's conceptual documentation: