httr
我正在努力使用oauth2.0 功能连接到 Google Analytics
oauth2.0_token(oauth_endpoints("google")
, oauth_app("google", client.id, client.secret)
, scope = "https://www.googleapis.com/auth/analytics.readonly")
它在我本地的 Rstudio 中运行良好,但在基于 AWS 的 Rstudio Server 中出现故障。当我同意在浏览器中传递数据并且 Google 将我重定向到页面 http://localhost:1410/?state=codehere 时出现错误
在本地 Rstudio 中启动身份验证时,浏览器会响应消息 -身份验证完成。请关闭此页面并返回 R,如果是 Rstudio 服务器它只是这个网页不可用
我怀疑我需要更改listener_endpoint配置,但是如何更改?我应该输入我的 Rstudio 服务器地址而不是默认的 127.0.0.1 吗?或者它是httr+Rtudio 服务器的缺陷,我不应该打扰?