View Source Plug.Conn.Cookies (Plug v1.14.0)
Conveniences for encoding and decoding cookies.
Link to this section Summary
Functions
Decodes the given cookies as given in either a request or response header.
Encodes the given cookies as expected in a response header.
Link to this section Functions
Decodes the given cookies as given in either a request or response header.
If a cookie is invalid, it is automatically discarded from the result.
examples
Examples
iex> decode("key1=value1;key2=value2")
%{"key1" => "value1", "key2" => "value2"}
Encodes the given cookies as expected in a response header.