A library application for reading, setting, and otherwise managing cookies in elli.
See the large test set in elli_cookie for a more thorough set of usage examples.
%% in an elli callback modulehandle(Req, _) ->Cookies=elli_cookie:parse(Req), %% retrieve a cookie value ..._PublicKey=elli_cookie:get("key", Cookies), %% ... and do something with it%% create new cookie for domain www.example.com that expires in 2 weeksFizzCookie=elli_cookie:new("fizz", "buzz", [elli_cookie:domain("www.example.com"), elli_cookie:expires({2, weeks})]), %% delete key cookieDeleteKeyCookie=elli_cookie:delete("key"), %% return response with cookies{ok, [DeleteKeyCookie, FizzCookie], "key deleted; fizz set"}.