Cookie Authentication
Cookie authentication uses HTTP cookies to authenticate client requests and maintain session information. It works as follows:
- The client sends a login request to the server.
- On the successful login, the server response includes the Set-Cookie header that contains the cookie name, value, expiry time and some other info. Here is an example that sets the cookie named
JSESSIONID
:
- The client needs to send this cookie in the
Cookie
header in all subsequent requests to the server.
- On the logout operation, the server sends back the
Set-Cookie
header that causes the cookie to expire.
Note: Cookie authentication is vulnerable to Cross-Site Request Forgeries (CSRF) attacks, so it should be used together with other security measures, such as CSRF tokens.
Note for Swagger UI and Swagger Editor users: Cookie authentication is currently not supported for “try it out” requests due to browser security restrictions. See this issue for more information. SwaggerHub does not have this limitation.
Describing Cookie Authentication
In OpenAPI 3.0 terms, cookie authentication is an API key that is sent in: cookie
. For example, authentication via a cookie named JSESSIONID
is defined as follows:
In this example, cookie authentication is applied globally to the whole API using the security
key at the root level of the specification. If cookies are required for just a subset of operations, apply security
on the operation level instead of doing it globally:
Cookie authentication can be combined with other authentication methods as explained in Using Multiple Authentication Types.
Describing the Set-Cookie Header
You may also want to document that your login operation returns the cookie in the Set-Cookie
header. You can include this information in the description
, and also define the Set-Cookie
header in the response headers
, like so:
Note that the Set-Cookie
header and securitySchemes
are not connected in any way, and the Set-Header
definition is for documentation purposes only.
Did not find what you were looking for? Ask the community
Found a mistake? Let us know