Present a W3C VC
Present a Credential with OID4VP
To present a Credential, you will need to retrieve the correct credential from storage, and obtain permission from the user to share said credential, before relaying any information to a verifier. That is where the PermissionRequest and PermissionResponse come in.
The PermissionRequest is the structure that you use to interface with the user to obtain permission for the sharing of one or more credentials. Here, the user would also choose which credential to share if there is more than one appropriate credential present in the wallet. The PermissonResponse represents the outcome of that interaction, and holds the vp_token, which contains the verifiable presentation.
1. Create a PermissionRequest
Here is an example value, pulled from VC Playground, of the url scanned in an oid4vp QR code. This one in particular is for a VCDM 1.1 Driver's License credential with the veresexchanger verifier.
2. The user selects the credential (and data fields)
Once you have a PermissionRequest, you can implement a CredentialSelector and a DataFieldSelector. The CredentialSelector should let the user pick which of their credentials to present. A DataFieldSelector can select/unselect which attributes within a credential should be shared or not.
How you implement your Selector code determines the UX in your mobile application. We give an example of what that could look like in our example application.
3. Create a PermissionResponse
Last updated
Was this helpful?