opts() :: #{ }
gun_cookies_list - Cookie store backend: in-memory, per connection
The gun_cookies_list module implements a cookie store
backend that keeps all the cookie data in-memory and tied
to a specific connection.
It is possible to implement a custom backend on top of
gun_cookies_list in order to add persistence or sharing
properties.
This module implements the callbacks defined in gun_cookies(3).
opts() :: #{ }
Cookie store backend options.
There are currently no options available for this backend.
2.0: Module introduced.
{ok, ConnPid} = gun:open(Host, Port, #{
cookie_store => gun_cookies_list:init(#{})
})