When recording requests for use as test fixtures, you don't want to include
secrets like authentication tokens and personal ids. These functions provide
a means for redacting this kind of content, or anything you want, from
responses that capture_requests() saves.
Usage
redact_cookies(response)
redact_headers(response, headers = c())
within_body_text(response, FUN)Arguments
- response
An
httr2_responseorhttr2_requestobject to sanitize.- headers
For
redact_headers(), a character vector of header names to sanitize.- FUN
For
within_body_text(), a function that takes as its argument a character vector and returns a modified version of that. This function will be applied to the text of the response's body.
Details
redact_cookies() removes cookies from httr2_response objects
and is the default redactor in capture_requests().
redact_headers() lets you target selected request and response headers for
redaction.
within_body_text() lets you manipulate the text of the response body
and manages the parsing of the raw (binary) data in the httr_response object.
Note that if you set a redacting function, it will also be applied to requests when loading mocks. This allows you to sanitize and/or shorten URLs in your mock files.
See also
vignette("redacting", package = "httptest2") for a detailed discussion of what these functions do and how to customize them. gsub_response() is another redactor.