result_handlers | R Documentation |
When creating operations from api one can define how the response from http should be handled. These functions can be used for simple result handling.
content_or_stop(x)
content_or_warning(x)
content_or_message(x)
x |
A response object from httr package (see response object in httr package documentation) |
See get_operations
for details.
Content of http response
content_or_warning()
: Returns content or issues a warning
content_or_message()
: Returns content or prints a message
api_file <- system.file(
"extdata", "sample_specs", "petstore.yaml",
package = "rapiclient", mustWork = TRUE
)
api <- get_api(api_file)
operations <- get_operations(api, handle_response = content_or_stop)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.