我正在尝试让这个API(在shell中工作)在R:
curl -H 'Content-Type: text/json' -d '{"Symbols":["FLDB","APOE"]}' https://toppgene.cchmc.org/API/lookup
我按照this的例子,写了这个R工作室:
library(RCurl)
library(RJSONIO)
postForm("https://toppgene.cchmc.org/API/lookup",
.opts = list(postfields = toJSON(list(Symbols = "[", "FLDB", "APOE", "]")),
httpheader = c('Content-Type' = 'text/json')))
我得到了一个内部服务器错误。我已经安装了所有的软件包,我不认为有语法错误。
有什么要帮忙的吗?谢谢。
1条答案
按热度按时间5jdjgkvh1#
想通了答案: