Get pageview's from Google Analytics API in Javascript

寵の児 提交于 2019-12-21 18:47:28

问题


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'));
    });

回答1:


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/




回答2:


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)



来源:https://stackoverflow.com/questions/16018247/get-pageviews-from-google-analytics-api-in-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!