Parse response header data as returned by curl_fetch, either as a set of strings or into a named list.
parse_headers(txt, multiple = FALSE)
parse_headers_list(txt)
The parse_headers_list function parses the headers into a normalized (lowercase field names, trimmed whitespace) named list.
If a request has followed redirects, the data can contain multiple sets of headers. When multiple = TRUE, the function returns a list with the response headers for each request. By default it only returns the headers of the final request.
req <- curl_fetch_memory("https://hb.cran.dev/redirect/3")
parse_headers(req$headers)
#> [1] "HTTP/2 200 "
#> [2] "date: Mon, 30 Jun 2025 19:05:10 GMT"
#> [3] "content-type: application/json"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "access-control-allow-origin: *"
#> [7] "access-control-allow-credentials: true"
#> [8] "x-powered-by: Flask"
#> [9] "x-processed-time: 0"
#> [10] "cf-cache-status: DYNAMIC"
#> [11] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=GiAIgErZxAxKhfSgr0fjE3dTXISmnQ7ux0Ke2rhnqieMoOcfLdLpWDRfIS%2B%2BLToyYK6hDmg0MJrAXhpv6wpiSXh9y5Ip9AupXg%3D%3D\"}]}"
#> [12] "content-encoding: zstd"
#> [13] "cf-ray: 957feefea97f2311-ORD"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
parse_headers(req$headers, multiple = TRUE)
#> [[1]]
#> [1] "HTTP/2 302 "
#> [2] "date: Mon, 30 Jun 2025 19:05:10 GMT"
#> [3] "content-type: text/html; charset=utf-8"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "location: /relative-redirect/2"
#> [7] "access-control-allow-origin: *"
#> [8] "access-control-allow-credentials: true"
#> [9] "x-powered-by: Flask"
#> [10] "x-processed-time: 0"
#> [11] "cf-cache-status: DYNAMIC"
#> [12] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=CnRWgYodoYooqASjtVoUGnMmFL2lz6YwZiAsjzceULv4r4%2B9PEfKHldNKmhOpsyT7DcNM9r4ySYwMp58B%2FQb6qRTJGyV5ci25Q%3D%3D\"}]}"
#> [13] "cf-ray: 957feefdd8692311-ORD"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
#>
#> [[2]]
#> [1] "HTTP/2 302 "
#> [2] "date: Mon, 30 Jun 2025 19:05:10 GMT"
#> [3] "content-type: text/html; charset=utf-8"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "location: /relative-redirect/1"
#> [7] "access-control-allow-origin: *"
#> [8] "access-control-allow-credentials: true"
#> [9] "x-powered-by: Flask"
#> [10] "x-processed-time: 0"
#> [11] "cf-cache-status: DYNAMIC"
#> [12] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=hcegnWJ%2FdmEExxD02AsBCcJtd%2FRqpFkDmG6Rh8C0%2Fwz%2FfqScK77dqnjCLkIy%2FQXL7mVRz8miJkVWJ4dmKAbhPSTGYFVwne3F1Q%3D%3D\"}]}"
#> [13] "cf-ray: 957feefe18b92311-ORD"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
#>
#> [[3]]
#> [1] "HTTP/2 302 "
#> [2] "date: Mon, 30 Jun 2025 19:05:10 GMT"
#> [3] "content-type: text/html; charset=utf-8"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "location: /get"
#> [7] "access-control-allow-origin: *"
#> [8] "access-control-allow-credentials: true"
#> [9] "x-powered-by: Flask"
#> [10] "x-processed-time: 0"
#> [11] "cf-cache-status: DYNAMIC"
#> [12] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=elVoNi%2Fbae2n1GQNRSFFppbKN3Wz1NOssX5l00VshPfrfSxjn5VDYEyxsou9xhbbxMR%2BOxBVC2paqxy1IO9VpoiB49UO0oL0mg%3D%3D\"}]}"
#> [13] "cf-ray: 957feefe591b2311-ORD"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
#>
#> [[4]]
#> [1] "HTTP/2 200 "
#> [2] "date: Mon, 30 Jun 2025 19:05:10 GMT"
#> [3] "content-type: application/json"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "access-control-allow-origin: *"
#> [7] "access-control-allow-credentials: true"
#> [8] "x-powered-by: Flask"
#> [9] "x-processed-time: 0"
#> [10] "cf-cache-status: DYNAMIC"
#> [11] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=GiAIgErZxAxKhfSgr0fjE3dTXISmnQ7ux0Ke2rhnqieMoOcfLdLpWDRfIS%2B%2BLToyYK6hDmg0MJrAXhpv6wpiSXh9y5Ip9AupXg%3D%3D\"}]}"
#> [12] "content-encoding: zstd"
#> [13] "cf-ray: 957feefea97f2311-ORD"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
#>
# Parse into named list
parse_headers_list(req$headers)
#> $date
#> [1] "Mon, 30 Jun 2025 19:05:10 GMT"
#>
#> $`content-type`
#> [1] "application/json"
#>
#> $server
#> [1] "cloudflare"
#>
#> $nel
#> [1] "{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#>
#> $`access-control-allow-origin`
#> [1] "*"
#>
#> $`access-control-allow-credentials`
#> [1] "true"
#>
#> $`x-powered-by`
#> [1] "Flask"
#>
#> $`x-processed-time`
#> [1] "0"
#>
#> $`cf-cache-status`
#> [1] "DYNAMIC"
#>
#> $`report-to`
#> [1] "{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=GiAIgErZxAxKhfSgr0fjE3dTXISmnQ7ux0Ke2rhnqieMoOcfLdLpWDRfIS%2B%2BLToyYK6hDmg0MJrAXhpv6wpiSXh9y5Ip9AupXg%3D%3D\"}]}"
#>
#> $`content-encoding`
#> [1] "zstd"
#>
#> $`cf-ray`
#> [1] "957feefea97f2311-ORD"
#>
#> $`alt-svc`
#> [1] "h3=\":443\"; ma=86400"
#>