1

Is there a way to track instant articles to Google Analytics from Facebook application?

Just to be clear, I added a code according to the official guidelines:

<figure class="op-tracker"> <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','//www.google-analytics.com/analytics.js','ga');
    ga('create', 'UA-173809-XX', 'auto');
    ga('require', 'displayfeatures');
    ga('set', 'campaignSource', 'Facebook');
    ga('set', 'campaignMedium', 'Social Instant Article');
    ga('send', 'pageview', {title: 'POST TITLE'});
</script> --> </iframe> </figure>

Nothing happened?

Thanks for any advise

mmvsbg
  • 3,570
  • 17
  • 52
  • 73
Matus Ko
  • 11
  • 2

1 Answers1

0

You have the <script> tag commented out. Removing the html comments (<!-- -->) should work:

<figure class="op-tracker"> <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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-173809-XX', 'auto');
ga('require', 'displayfeatures');
ga('set', 'campaignSource', 'Facebook');
ga('set', 'campaignMedium', 'Social Instant Article');
ga('send', 'pageview', {title: 'POST TITLE'});

Edgar Sanchez
  • 246
  • 1
  • 5