http_type: Extract the content type of a response

View source: R/response-type.R

http_typeR Documentation

Extract the content type of a response

Description

Extract the content type of a response

Usage

http_type(x)

Arguments

x

A response

Value

A string giving the complete mime type, with all parameters stripped off.

Examples

## Not run: 
r1 <- GET("http://httpbin.org/image/png")
http_type(r1)
headers(r1)[["Content-Type"]]

r2 <- GET("http://httpbin.org/ip")
http_type(r2)
headers(r2)[["Content-Type"]]

## End(Not run)

httr documentation built on Aug. 15, 2023, 9:08 a.m.