在 R 中打印来自 API 的 json 响应

Print json response from API in R

我一直在使用 R 中的 httr 库和函数 GET。我对这一行进行了编码:

GET(url,add_headers("user" = "password"))

这是回复:

Response [url]
  Date: 2015-10-28 08:38
  Status: 200
  Content-Type: application/json; charset=UTF-8
  Size: 10.6 kB

我想知道如何打印此 API 的 json 响应。

我使用函数 content 将结果转换为 json,如下所示:

data_get<- GET(url,add_headers("user" = "password"))

get2json<- content(data_get, as = "parsed")

parse2json<- (toJSON(get2json))