我想通过 API 代码从 MARVEL DEVELOPER 中提取数据并分析它(使用 R)。
我从 MARVEL 网站获得了以下网址:http ://gateway.marvel.com:80/v1/public/characters?apikey=f389fcb49ad574e10ca570867f4bfa43
我使用 httr 包来收集数据:
install.packages("httr")
library(httr)
> url <- GET("http://gateway.marvel.com:80/v1/public/characters?orderBy=name&limit=100&apikey=f389fcb49ad574e10ca570867f4bfa43")
> content(url)
$code
[1] "MissingParameter"
$message
[1] "You must provide a hash."
我想将所有这些数据提取到 R。我应该做什么/阅读?
谢谢。