View source: R/api_utilities.R
get_api_data | R Documentation |
A wrapper to the get_api_data
method defined in the
Credentials
class.
get_api_data(url, fromCSV = FALSE, profile = myProfile, ...)
url |
a character of API URL. |
fromCSV |
a logical, defines whether data are returned in .csv format or .json format. |
profile |
an object of class |
... |
further arguments and CSV parsing parameters to be passed to |
a dataframe (fromCSV = TRUE
) or a list containing a dataframe and its metadata (fromCSV = TRUE
).
Credentials
## Not run:
myProfile <- create_profile("", "")
json_url <- "http://httpbin.org/json"
api_data_json <- get_api_data(json_url)
head(api_data_json$slideshow$slides)
csv_url <- "http://httpbin.org/robots.txt"
api_data_csv <- get_api_data(csv_url, fromCSV = TRUE)
head(api_data_csv)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.