OptionaldomainOptionalhttpFlags the cookie to be accessible only by the web server.
Passed to the Response cookie as httponly.
Defaults to true.
OptionalpathPath for the cookie.
Passed to the Response cookie as path.
To prevent cookie collision when multiple apps are hosted on the same domain
(e.g., example.com/app1 and example.com/app2), set this to your app's base path.
OptionalsameValue of the SameSite Set-Cookie attribute.
Passed to the Response cookie as samesite.
Defaults to "Lax" but will be adjusted based on AuthorizationParameters.response_type.
When setting to 'None' (uncommon), you should implement CSRF protection on your own routes
OptionalsecureMarks the cookie to be used over secure channels only.
Passed to the Response cookie as secure.
Defaults to the protocol of ConfigParams.baseURL.
OptionaltransientSet to true to use a transient cookie (cookie without an explicit expiration).
Default is false
Domain name for the cookie. Passed to the Response cookie as
domain