> github_token <- oauth2.0_token(oauth_endpoints("github"), myapp)
Waiting for authentication in browser...
Press Esc/Ctrl + C to abort
Authentication complete.
Error in curl::curl_fetch_memory(url, handle = handle) :
Couldn't connect to server
我正在尝试从 GitAPI 获取数据。我需要使用此数据来查找创建 repo 的时间。我试过安装“httpuv”,但错误是一样的。
附注。我在代理服务器后面。
最佳答案
library(httr)
set_config(use_proxy(url="10.3.100.207",port=8080))
这工作正常。谢谢
关于r - curl::curl_fetch_memory(url, handle = handle) 中的错误:无法连接到 R 中的服务器:oauth2.0_token()),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39285570/