You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow the token to be included in either the query string (?token=<TOKEN>) or the request header (X-TOKEN: <TOKEN>).
The token will take precedence over the standard authorization header. If the token authentication fails, the system will then fall back to using the authorization header for authentication.
Each user will be assigned a unique token. The token will be refreshed every time the dufs service is restarted.
Solve the known compatibility problems associated with Basic/Digest authentication that can lead to unexpected errors (Refer to issue auth cannot remain in all path #510).
The WebUI can store the token in local storage, enabling users to remain logged in even after restarting their browsers.
The text was updated successfully, but these errors were encountered:
Design Proposal
?token=<TOKEN>
) or the request header (X-TOKEN: <TOKEN>
).dufs
service is restarted.Why need this features
The text was updated successfully, but these errors were encountered: