无法在R中获取(“ http:// localhost:4321”)

时间:2018-09-24 13:13:00

标签: r web-services

我设法使用servr::httd()启动R服务器,但无法运行GET()

  

要停止服务器,请运行servr::daemon_stop("4329265464")或重新启动R会话

     

http://127.0.0.1:4321处为目录/ Users /提供服务

我可以使用GET()来呼叫yahoo,但对于rt来说却什么也没有,甚至没有失败的状态。有人可以帮我吗?

library(httr)

s <- GET("http://www.yahoo.com")
http_status(s)


r <- GET("http://127.0.0.1:4321")
http_status(r)


t <- GET("http://localhost:4321")
http_status(t)

0 个答案:

没有答案