Google Analytics send event callback function

前端 未结 3 893
面向向阳花
面向向阳花 2020-12-08 14:57

I\'m trying to send an event to Google Analytics after a user is registered and before he\'s redirected. I\'m using Google Tag Manager and universal js.

相关标签:
3条回答
  • 2020-12-08 15:26

    From Google Analytic doc https://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference#hitCallbackNews

    // Alerts the user when a hit is sent.
    ga('send', 'pageview', {
      'hitCallback': function() {
        alert('hit sent');
      }
    });
    

    You can edit the hitCallback function for yours.

    OR

    // Use a timeout to ensure the execution of critical application code.
    ga('send', 'pageview', {'hitCallback': criticalCode});
    setTimeout(criticalCode, 2000);
    
    // Only run the critical code once.
    var alreadyCalled = false;
    function criticalCode() {
      if (alreadyCalled) return;
      alreadyCalled = true;
    
      // Run critical code here...
    }
    

    Here you can define your function (criticalCode) in the above example that can ensure the data sent to Google Analytic and then work with your code.

    For much understanding api of analytic, fyr: https://developers.google.com/analytics/devguides/collection/analyticsjs/command-queue-reference

    0 讨论(0)
  • 2020-12-08 15:28

    From the docs: https://developers.google.com/analytics/devguides/collection/analyticsjs/advanced#hitCallback

    ga('send', 'pageview', {
      'page': '/my-new-page',
      'hitCallback': function() {
      alert('analytics.js done sending data');
    }
    });
    

    In this example, the field name object configures both the page parameter, as well as setting the hitCallback. Once the tracker has completed sending data, an alert box will be shown to the user.

    You can use hitCallback for events, page views etc..

    0 讨论(0)
  • 2020-12-08 15:36

    Finally got it. It's pretty complicated and not described in docs. In my case I use Google Tag Manager, so there some workarounds I had to make to get successfully fire an event and get callback.

    First, we have to get ClientId, which is required with any event sent to Google servers. Actually it's kept in cookies, but Google does not recommend to take it directly from there.

    Here is how Google recommends to get it, but this will not work if you are using Google Tag Manager.

     ga(function(tracker) {
           var clientId = tracker.get('clientId');
     });
    

    Instead, you have to get ClientId from getAll method.

     var clientId = ga.getAll()[0].get('clientId');
    

    After, you have to create new tracker

        ga('create', 'UA-XXX-YYY', {
            'clientId': clientId
        });
    

    And after that we can send an event:

     ga('send', 'event', {
       'eventCategory': 'YOUR Category Name', //required
       'eventAction': 'YOUR Action name', //required
       'eventLabel': 'YOUR Label',
       'eventValue': 1,
       'hitCallback': function() {
           console.log('Sent!!');
          //callback function
        },
       'hitCallbackFail' : function () {
          console.log("Unable to send Google Analytics data");
          //callback function
       }
    });
    
    0 讨论(0)
提交回复
热议问题