Identity qrcodes - #1059
Open
armanddidierjean wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Summary
Allows to generate and scan qrcode attesting of a user identity
The user should first ask for a token:
POST /identity/users/me/create-token
This token will be valid for 2 minutes, the client should generate a qrcode containing this token
The person verifying the identity should first choose a context. A context correspond to a situation where qrcode will be verified, it typiccally correspond to an event for which we want to keep the list of participants.
With its context, the verifier should scan the qrcode of the user.
The verifier client should
GET /identity/verification-contexts/{context_id}/scans/{token}/info
to get information about the user, and show this information to the verifier.
already_scannedindicates if the user identity was previously scanned for the current context. It may be used to ensure people can only enter once.The client should present a button asking if the verifier wants to scan this user (typically, if the user entry is granted, the identity will be scanned, otherwise if the user entry is refused, the verifier won't scan the identity)
To scan the identity, the client should
POST /identity/verification-contexts/{context_id}/scans/{token}/scan
Classification
Type of Change
Impact & Scope
Testing
Documentation
"Docstrings#Inline comments