Verifier Service
Overview
When users create an account or add a guardian, verifier services are needed to verify the account.
Verifier services encompass functions such as recording, sending, and verifying verification codes as well as validating signatures.
Frontend - Proxy Guardian Verifier Service Relationships in Interface Calling
Users initiate guardian account requests through the frontend to the proxy Guardian Verifier service, such as emails or phone numbers.
The proxy Guardian Verifier service handles this request:
- If the request is successfully sent, it returns to the frontend with a success confirmation and VerifierSessionId.
- If the request fails, it returns with an error code and error message.
Frontend - Backend Proxy Guardian Verifier Service Relationships in Interface Calling
Users send the received verification code to the backend proxy Guardian Verifier service through the frontend.
The backend proxy Guardian Verifier service forwards the verification code:
- If the verification succeeds, it returns the verification file and signature file to the frontend.
- If the verification fails, it returns an error code and error message to the frontend.
Signing up Using Google Account
This is automatically done in code and developers do not need to worry about implementing.