Of these, you need to worry only about :expires
. It controls how long the browser should save the cookie. If :expires
is **NIL**
(the default), the browser will save the cookie only until it exits. Other possible values are , which means the cookie should be kept forever, or a universal time as returned by **GET-UNIVERSAL-TIME**
or **ENCODE-UNIVERSAL-TIME**
. An :expires
of zero tells the client to immediately discard an existing cookie.11
After you’ve set a cookie, you can use the function get-cookie-values
to get an alist containing one name/value pair for each cookie sent by the browser. From that alist, you can pick out individual cookie values using **ASSOC**
and **CDR**
.
The following function shows the names and values of all the cookies sent by the browser:
Figure 26-7. http://localhost:2001/show-cookies
with no cookies
To set a cookie, you need another function, such as the following:
(defun set-cookie (request entity)
(with-http-response (request entity :content-type "text/html")
(set-cookie-header request :name "MyCookie" :value "A cookie value")
(with-html-output ((request-reply-stream request))
(html
(:standard-page
(:p "Cookie set.")
(:p (:a :href "/show-cookies" "Look at cookie jar."))))))))
Figure 26-8.