Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 2.02 KB

user-identity-and-authenticator.md

File metadata and controls

55 lines (37 loc) · 2.02 KB

User, Identity and Authenticator

To fully configure and use Authgear, you need to understand 3 important concepts in Authgear's flexible yet powerful authentication system:

  • User
  • Identity
  • Authenticator

Each user could have multiple identities, which is the way they can identify themselves such as username, email and phone. Identities could also came from an OAuth Provider such as Google/Facebook SSO, or Sign in with Apple.

Authenticator are the way a user with an identity can authenticate itself, each users can have a number of primary and secondary authenticators. If secondary are configured or required, a user need to authenticate itself against both to be signed in.

Combining identity and authenticators, Authgear can support a lot of different authentication needs such as, but not included to:

  • Simple email / username / phone sign in, with or without 2FA
  • Email or SMS Passwordless login
  • SSO login such as Google / Facebook etc
  • Phone sign in with Password as the 2nd factor like telegram or whatsapp
  • A lot more.

Identity

Currently, Authgear support the following identity:

  • Email
  • Phone
  • Username
  • OAuth Provider:
    • Google
    • Facebook
    • Azure Active Directory
    • Linkedin
    • Sign in with Apple
  • Anonymous

Each identities have its configuration. For example email could be configured to block "+" or not, or if a username is case sensitive or not.

Email, Phone and Username identities automatically create the email, phone_number and preferred_username claims. OAuth Provider might create a email claim depends on if the user's email is provided.

Authenticator

Each user could have multiple primary and secondary authenticators, currently Authgear support the following authenticators:

  • Primary Authenticators:
    • Password
    • One Time Passcode via Email or SMS (oob_otp)
  • Secondary Authenticators:
    • Password
    • TOTP (2FA token)
    • One Time Passcode via Email or SMS (oob_otp)

Secondary authentication could be optional (only if the user configured it) or required for all users.