A wrapper to the get_api_graph method defined in the Credentials class.

get_api_graph(url, file_ext = ".png", profile = myProfile)

Arguments

url

a character of API URL.

file_ext

a non-empty character vector giving the file extension. Default is .png.

profile

an object of class Credentials. Default is myProfile.

Value

An object of class response.

See also

Examples

if (FALSE) {
myProfile <- create_profile("", "")
url <- "http://httpbin.org/image/png"

api_data_graph <- get_api_graph(url)

names(api_data_graph)
img <- png::readPNG(api_data_graph$graph)
grid::grid.raster(img)
}