/static
and /extensions
endpoints are not protected behind Authentication.X-Forwarded-For
header or the X-Real-IP
header or the client IP address.
When a user fails to log in, they wait 1 second before they can try again. This time can be modified by
modifying the value of delay_after_failure
.
server_setup.py
module. The configuration depends on your identity provider.
Here is an example configuration for Google.
Provider | Function | Description |
---|---|---|
writer.auth.Google | Allow your users to login with their Google Account | |
Github | writer.auth.Github | Allow your users to login with their Github Account |
Auth0 | writer.auth.Auth0 | Allow your users to login with different providers or with login password through Auth0 |
app_static_public
parameter to allow their usage.
When app_static_public
is set to True
, the static assets in your application are accessible without authentication.
user_info
route is configured, user information will be accessible
in the event handler through the session
argument.
session
object. See User information in
event handlerParameter | Description |
---|---|
status_code | HTTP status code |
message | Error message |
more_info | Additional information |