handle_cookies function

Extract cookies from a handle

Extract cookies from a handle

The handle_cookies function returns a data frame with 7 columns as specified in the netscape cookie file format.

handle_cookies(handle)

Arguments

  • handle: a curl handle object

Examples

h <- new_handle() handle_cookies(h) # Server sets cookies req <- curl_fetch_memory("https://hb.cran.dev/cookies/set?foo=123&bar=ftw", handle = h) handle_cookies(h) # Server deletes cookies req <- curl_fetch_memory("https://hb.cran.dev/cookies/delete?foo", handle = h) handle_cookies(h) # Cookies will survive a reset! handle_reset(h) handle_cookies(h)

See Also

Other handles: handle

  • Maintainer: Jeroen Ooms
  • License: MIT + file LICENSE
  • Last published: 2025-03-24