Междоменное отслеживание с неверным идентификатором Iframe - PullRequest
0 голосов
/ 07 октября 2018

Итак, у меня есть код Google Analytics с Iframe и компоновщиком:

под кодом, получающим неправильный идентификатор клиента:

_FB_f118d95cc82c2a8data&logged_in=false&xd_action=proxy_ready;

   <iframe id="iframe-name" src="[URL]" onload="iframe_init();"></iframe>

   <script>
    (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','https://www.google-analytics.com/analytics.js','ga');
    ga('create', 'UA-XXXXX-1', 'auto', {storage: 'none','allowLinker': true});

      ga('require', 'linker');
      ga('linker:autoLink', ['https://www.domain2.com/'],false,true); 
      ga('send', 'pageview');
      function iframe_init(){
        if(typeof ga!=='undefined') {
          ga(function(tracker) {
          window.localStorage.setItem('ga_clientId',tracker.get('clientId')); 
          var clientId = window.localStorage.getItem('ga_clientId');
          var frameWindow = document.getElementById('booking_form').contentWindow;
          var frameURL = 'https://www.domain2.com/';
          frameWindow.postMessage(clientId, frameURL);
          console.log("DRAFT CLIENT ID ",clientId);

        });
    }
  }
</scrip>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...