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)

Arguments

txt

raw or character vector with the header data

multiple

parse multiple sets of headers separated by a blank line. See details.

Details

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.

Examples

req <- curl_fetch_memory("https://hb.cran.dev/redirect/3")
parse_headers(req$headers)
#>  [1] "HTTP/2 200 "                                                                                                                                                                                                                                 
#>  [2] "date: Thu, 29 May 2025 19:09:03 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=XBX6hMEAAjX7VAJ7iXiVhSIFzLFoPF4oHyUex93z%2FLvTIhoNP8a19LCdrFcCzdTMX%2FSyrF5a80Ab%2FZqNjCGsDswv5WXbFc%2FajQ%3D%3D\"}]}"
#> [12] "content-encoding: zstd"                                                                                                                                                                                                                      
#> [13] "cf-ray: 947848b02d59fa1b-ORD"                                                                                                                                                                                                                
#> [14] "alt-svc: h3=\":443\"; ma=86400"                                                                                                                                                                                                              
parse_headers(req$headers, multiple = TRUE)
#> [[1]]
#>  [1] "HTTP/2 302 "                                                                                                                                                                                                                           
#>  [2] "date: Thu, 29 May 2025 19:09:03 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=1DOmIUH6NfMj0KX6uNrnpk98FwLSmn4Iu4MHRp2c87UdK23GUepxPGfUH4t0e%2FYpxQVf8uKEKnclOjRaVbtrP47A5HkggwtpGA%3D%3D\"}]}"
#> [13] "cf-ray: 947848af4af4fa1b-ORD"                                                                                                                                                                                                          
#> [14] "alt-svc: h3=\":443\"; ma=86400"                                                                                                                                                                                                        
#> 
#> [[2]]
#>  [1] "HTTP/2 302 "                                                                                                                                                                                                                           
#>  [2] "date: Thu, 29 May 2025 19:09:03 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=VmLjplOCeFgdqd3nQ78PPZ9t5bN3cph8npa32qvbnmUAr8gJWOtKEcVZygIZyb3JIkcvrIrBS0P8hlvwJ5zz%2BJqXycinVafy8Q%3D%3D\"}]}"
#> [13] "cf-ray: 947848af8bb1fa1b-ORD"                                                                                                                                                                                                          
#> [14] "alt-svc: h3=\":443\"; ma=86400"                                                                                                                                                                                                        
#> 
#> [[3]]
#>  [1] "HTTP/2 302 "                                                                                                                                                                                                                               
#>  [2] "date: Thu, 29 May 2025 19:09:03 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=mJTRrgx1IlqS0gkfqPayatCEiFJ2tO2M9smn%2BMM4Moil2RY%2FyA3Nc2xYEXZgDf4RoZwx32vodYdHK3f%2BpAJRboVGXOCs5p2r9A%3D%3D\"}]}"
#> [13] "cf-ray: 947848afdc92fa1b-ORD"                                                                                                                                                                                                              
#> [14] "alt-svc: h3=\":443\"; ma=86400"                                                                                                                                                                                                            
#> 
#> [[4]]
#>  [1] "HTTP/2 200 "                                                                                                                                                                                                                                 
#>  [2] "date: Thu, 29 May 2025 19:09:03 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=XBX6hMEAAjX7VAJ7iXiVhSIFzLFoPF4oHyUex93z%2FLvTIhoNP8a19LCdrFcCzdTMX%2FSyrF5a80Ab%2FZqNjCGsDswv5WXbFc%2FajQ%3D%3D\"}]}"
#> [12] "content-encoding: zstd"                                                                                                                                                                                                                      
#> [13] "cf-ray: 947848b02d59fa1b-ORD"                                                                                                                                                                                                                
#> [14] "alt-svc: h3=\":443\"; ma=86400"                                                                                                                                                                                                              
#> 

# Parse into named list
parse_headers_list(req$headers)
#> $date
#> [1] "Thu, 29 May 2025 19:09:03 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=XBX6hMEAAjX7VAJ7iXiVhSIFzLFoPF4oHyUex93z%2FLvTIhoNP8a19LCdrFcCzdTMX%2FSyrF5a80Ab%2FZqNjCGsDswv5WXbFc%2FajQ%3D%3D\"}]}"
#> 
#> $`content-encoding`
#> [1] "zstd"
#> 
#> $`cf-ray`
#> [1] "947848b02d59fa1b-ORD"
#> 
#> $`alt-svc`
#> [1] "h3=\":443\"; ma=86400"
#>