Log out
Clears the fuse_session cookie (Max-Age=-1). Safe to call
unauthenticated — clearing a cookie the caller may not hold is
harmless, and there is no server-side session state. Always
succeeds.
POST
/logoutResponses
204Session cookie cleared (no body).
Request
curl -X POST "http://localhost:8080/logout"const response = await fetch("http://localhost:8080/logout", {
method: "POST"
});import requests
response = requests.post(
"http://localhost:8080/logout",
)Response
Session cookie cleared (no body).