我正在使用Google API客户端从Google Analytics(我的Gemfile.lock.lock Sais)从Google Analytics(0.6.4)下载一些数据。我从Google那里获得数据,但它的大部分,以至于(或至少应该)在几页中(超过1000行)。
我尝试使用Google中的示例(下面我的代码的一部分)
request = {
:api_method => analytics.data.ga.get,
:parameters => {
'ids' => "ga:" + ids,
'start-date' => start_date,
'end-date' => end_date,
'dimensions' => dimensions,
'metrics' => metrics,
'max-results' => 10 #only for testing
}
}
loop do
result = api.execute(request)
results << result
break unless result.next_page_token
request = result.next_page
end
好吧...它不起作用。
result.next_page_token #returns always nil
我正在使用分析API(V3)
我也经历了同一件事,使其与以下代码一起使用
loop do
result = api.execute(request)
results << result
next_page_uri = result.data.next_link
break unless next_page_uri
next_page = result.next_page
next_page.uri = next_page_uri
request = next_page
end
希望这将帮助他们面临同样问题的人