如何在没有浏览器的情况下在AWS Ubuntu上对Google Analytics进行身份验证

时间:2018-02-01 00:01:26

标签: r amazon-web-services authentication google-analytics ubuntu-16.04

我一直使用本地计算机上的R中的以下代码来提取Google Analytics指标

library(RGoogleAnalytics)
client_id <- " "
client_secret <- " "
oauth_token <- Auth(client_id,client_secret)
save(oauth_token, file="oauth_token")
load("oauth_token")
GetProfiles(oauth_token)
query.init<-Init()

它仅提示首次进行身份验证。

同样,当我尝试在AWS Ubuntu实例上使用R中的相同代码提取Google Analytics指标时,会提示以下内容:

Waiting for authentication in browser...
Press Esc/Ctrl + C to abort
Please point your browser to the following url: 

如何在AWS UBUNTU实例中进行身份验证以提取Google Analytics指标?还有其他办法吗?

1 个答案:

答案 0 :(得分:0)

我将oauth_token和.httr-oauth文件从我的本地计算机复制到AWS实例,注释掉了第4,5行,就是这样。我可以提取Google Analytics指标。