我正在使用Google Analytics API开发一个报告工具。我正在使用Garb,我可以提取数据。我面临的挑战是如何指定start_date和end_date来获取两个日期之间的值。
class Exits
extend Garb::Model
metrics :visits,:percentNewVisits
dimensions :visitorType
end
def registration
puts "entering the registration method"
Garb::Session.login("email@email.com", "password")
profile = Garb::Management::Profile.all.detect {|p| p.web_property_id == 'UA-xxxxxxxx-x'}
report = Exits.results(profile, {:start_date =>2.day.ago, :end_date =>1.day.ago, :metrics =>[:visits]})
#report = Garb::Report.new(profile, {:start_date => 2.day.ago, :end_date => Time.now})
puts "entering the loop"
report = profile.exits()
report.each do |re|
puts re
#puts "#{report.visits}"
#puts "#{profile.percent_new_visits}"
#puts "#{profile.visitorType}"
end
end
结束
请帮助获取页面视图和两个日期之间的任何其他指标。
试试这个:
profile = Garb::Management::Profile.all.detect {|p| p.web_property_id == web_profile}
options = {
:start_date => (Date.today - 2),
:end_date => (Date.today - 1),
}
result = Report.results(profile, options)
关于自述文件中的文档:
Other Parameters
start_date: The date of the period you would like this report to start
end_date: The date to end, inclusive
limit: The maximum number of results to be returned
offset: The starting index
所以你可以通过做你想做的事
report = Garb::Report.results(profile, {:start_date => 2.day.ago, :end_date => 1.day.ago})