1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 15:14:08 +00:00

lil doc update

This commit is contained in:
Rene Schallner 2023-05-16 16:11:39 +02:00
parent 94fe2d24c2
commit 81f38d6605

View file

@ -1,6 +1,11 @@
# Authentication
Zap supports both Basic and Bearer authentication.
Zap supports both Basic and Bearer authentication which are based on HTTP
headers.
For a cookie-based ("session token", not to mistake for "session cookie")
authentication, see the [UserPassSessionAuth](../src/http_auth.zig#L312) and its
[example](../examples/userpass_session_auth/).
For convenience, Authenticator types exist that can authenticate requests.