resp_content_type()
returns the just the type and subtype of the
from the Content-Type
header. If Content-Type
is not provided; it
returns NA
. Used by resp_body_json()
, resp_body_html()
, and
resp_body_xml()
.
resp_encoding()
returns the likely character encoding of text
types, as parsed from the charset
parameter of the Content-Type
header. If that header is not found, not valid, or no charset parameter
is found, returns UTF-8
. Used by resp_body_string()
.
Arguments
- resp
A httr2 response object, created by
req_perform()
.