我试图使用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/ 并且它正在工作
代码有什么问题?