我正在尝试使用rga库,但出现此错误:
Error in parseJSON(txt) : lexical error: invalid char in json text.
<!DOCTYPE html> <html lang=en>
(right here) ------^
这是我的代码:
rga.open()
profiles<-ga$getProfiles()
ids<-profiles[1]
data <- ga$getData(ids[1],
start.date = "2014-12-01",
end.date = "2014-12-04",
metrics = "ga:sessions",
dimensions = "ga:date",
max = 1500,
sort="",
filters="")
我在中测试了查询
https://ga-dev-tools.appspot.com/explorer/
它正在工作
代码有什么问题?
最佳答案
rga软件包现在不维护。请尝试使用CRAN中的RGA
或RGoogleAnalytics
。
关于r - 无法使用RGA R库从Google Analytics(分析)获取数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28287243/