fake_response {httptest} | R Documentation |
Return something that looks like a 'response'
Description
These functions allow mocking of HTTP requests without requiring an internet connection or server to run against. Their return shape is a 'httr' "response" class object that should behave like a real response generated by a real request.
Usage
fake_response(
request,
verb = "GET",
status_code = 200,
headers = list(),
content = NULL
)
Arguments
request |
An 'httr' |
verb |
Character name for the HTTP verb, if |
status_code |
Integer HTTP response status |
headers |
Optional list of additional response headers to return |
content |
If supplied, a JSON-serializable list that will be returned
as response content with Content-Type: application/json. If no |
Value
An 'httr' response class object.