from_json_conn.Rd
Currently, this isn't very efficient as the entire contents of the connection are read into R as a string and then the JSON parsed from there.
from_json_conn(conn, opts = list(), ...)
connection object. e.g. url('https://jsonplaceholder.typicode.com/todos/1')
Named list of options for parsing. Usually created by from_opts()
Other named options can be used to override any options in opts
.
The valid named options are identical to arguments to from_opts()
R object
For plain text files it is faster to use
from_json_file()
.
Other JSON Parsers:
from_json_file()
,
from_json_raw()
,
from_json_str()
,
from_ndjson_file_as_df()
if (FALSE) {
from_json_conn(url("https://api.github.com/users/hadley/repos"))
}