Fetch and Save Credentials
An Integrator can fetch credentials stored on an Issuer and then save them in his/her wallet. The fetchAndSaveClaims()
function is called to fetch and save a list of credentials from an Issuer.
Fetch and Save Credentials
Future<List<ClaimEntity>> fetchAndSaveClaims({
required Iden3MessageEntity message,
required String genesisDid,
BigInt? profileNonce,
required String privateKey,
});
The fetchAndSaveClaims()
function uses Iden3MessageEntity
, privateKey
, genesisDid
and profileNonce
as the input parameters. and returns a list of ClaimEntity
.
OfferIden3MessageEntity
is a type of Iden3MessageEntity
and is needed as message
input, otherwise an exception of type InvalidIden3MsgTypeException will be thrown. As you can see in the iden3 Message API tutorial, we get Iden3MessageEntity
when we call the getIden3Message()
method.
privateKey
of the identity is a key that is used to access the sensitive information of the identity. This key is also used for generating proofs by using the credentials associated with the identity.
genesisDid
is the unique ID of the identity.
profileNonce
is the nonce of the profile used from the identity to obtain the DID identifier.
Wallet-Issuer Interaction for Fetching Credentials
The Integrator scans the QR code displayed on the Issuer site to get the Iden3 message.
The Integrator uses the
OfferIden3MessageEntity
obtained from the Iden3 message to authenticate and fetch the credentials from the Issuer.The Issuer validates the identity and returns a list of
ClaimEntities
back to the Integrator.The credentials are stored on the SDK associated with the identity.