Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: reorganize (part 3/3) #847

Merged
merged 6 commits into from
Sep 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/getting_started/authenticators.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ Shield provides the following Authenticators:

- **Session** authenticator provides traditional ID/Password authentication.
It uses username/email/password to authenticate against and stores the user
information in the session. See [Using Session Authenticator](../quick_start_guide/using_session_auth.md) for usage.
information in the session. See [Using Session Authenticator](../quick_start_guide/using_session_auth.md)
and [Session Authenticator](../references/authentication/session.md) for usage.
- **AccessTokens** authenticator provides stateless authentication using Personal
Access Tokens passed in the HTTP headers.
See [Protecting an API with Access Tokens](../guides/api_tokens.md) for usage.
See [Protecting an API with Access Tokens](../guides/api_tokens.md) and
[Access Token Authenticator](../references/authentication/tokens.md) for usage.
- **HmacSha256** authenticator provides stateless authentication using HMAC Keys.
See [Protecting an API with HMAC Keys](../guides/api_hmac_keys.md) for usage.
See [Protecting an API with HMAC Keys](../guides/api_hmac_keys.md) and
[HMAC SHA256 Token Authenticator](../references/authentication/hmac.md) for usage.
- **JWT** authenticator provides stateless authentication using JSON Web Token. To use this,
you need additional setup. See [JWT Authentication](../addons/jwt.md).
Loading