Reputation: 1771
I am having trouble with fetching data from Google Analytics API with javascript. I can't seem to fetch anything but lets say its something basic like pageviews.
I am using Analytics.js
This is the code i am using to connect to GA API:
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'XXX', 'example.com');
ga('send', 'pageview');
So how do i get the pageviews now? I tried using this code but it returns undefined:
ga(function() {
var tracker = ga.getByName('t0');
alert(tracker.get('page'));
});
Upvotes: 4
Views: 7313
Reputation: 1534
You can get variables you send as payload using tracker object.
For example:
ga(function(tracker) {
var defaultPage = tracker.get('location');console.log(defaultPage);
});
(See analytics_debug.js for more information)
Upvotes: 0
Reputation: 22824
Analytics.js is a tracking API. It just tracks/sends data to Google Analytics.
In order to retrieve data from Google Analytics you need to use a different API. Look for the Reporting API.
https://developers.google.com/analytics/devguides/reporting/
Upvotes: 7