Wrong relaystate
Incorrect RelayState Warning
Error Log
You may encounter the following warning in server.log
:
Solution
Enable Session Cookie Support in "AuthN" Module
To address this issue, enable session cookie support by implementing these attributes:
"http_session_cookie_secure"
: Set totrue
to ensure cookies are transmitted over secure connections."http_session_cookie_same_site"
: Set to"NONE"
to mitigate CSRF attacks without restrictions.
Configuration Example
In config.json
, add the cookie attributes in the AuthN section:
Last updated