我正在尝试将GET()
语句发送到"http://swapi.co/api/planets/1"
每次我运行它,我都会收到一个错误:
Error in curl::curl_fetch_memory(url, handle = handle) :
Couldn't connect to server
。
我在网上搜索了一个解决方案,找到了this个帖子和this个帖子。他们都谈论使用set_config
命令。我试过了,但它还没有用。
当他们谈论url=
时,我正在尝试访问的URL或我的机器的IP地址是什么?
这是一台工作计算机,所以我在防火墙后面。
library(httr)
set_config(use_proxy(url="localhost",port=8080))
r <- GET("http://swapi.co/api/planets/1")
r
> set_config(use_proxy(url="localhost",port=8080))
> r <- GET("http://swapi.co/api/planets/1")
Error in curl::curl_fetch_memory(url, handle = handle) :
Couldn't connect to server