Using garb (http://github.com/vigetlabs/garb), I need to get the same XML Overlay XML as exporting the Google Analytics web interface. How can I do that?
Garb::Session.login("email@gmail.com", "pwd")
profile = Garb::Profile.all.first
profile.visits
+
class Exits
extend Garb::Model
metrics :pageviews, :visitors, :visits
dimensions :request_uri
end
... works great.
But I really canβt get what I have to do to get the xml with geodata (city + lon / lat).
Thank!
source
share