用于滚动的AMP分析事件

时间:2017-05-27 09:04:49

标签: google-analytics amp-html

我正在尝试将分析添加到我的AMP页面。而tra



<!doctype html>
<html amp lang="en">

<head>
  <meta charset="utf-8">
  <title>Hello, AMP Analytics</title>
  <link rel="canonical" href="http://example.ampproject.org/article-metadata.html" />
  <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
  <script async custom-element="amp-analytics" src="https://cdn.ampproject.org/v0/amp-analytics-0.1.js"></script>
  <style>
    body {
      opacity: 0
    }
  </style><noscript><style>body {opacity: 1}</style></noscript>
  <script async src="https://cdn.ampproject.org/v0.js"></script>
</head>

<body>
  <amp-analytics type="googleanalytics">
    <script type="application/json">
      {
        "vars": {
          "account": "UA-xxxxxxxx-x"
        },
        "triggers": {
          "trackPageview": {
            "on": "visible",
            "request": "pageview"
          },
          "scrollPings": {
            "on": "scroll",
            "scrollSpec": {
              "verticalBoundaries": [10, 20, 30, 40, 50, 60, 70, 80, 90]
            },
            "request": "event",
            "vars": {
              "eventId": "scroll"
            }
          },
          "trackEvent": {
            "selector": "#event-test",
            "on": "click",
            "request": "event",
            "vars": {
              "eventCategory": "${canonicalUrl}",
              "eventAction": "click"
            }
          }

        }
      }
    </script>
  </amp-analytics>

  <h1 id="header">AMP Page</h1>

  <span id="event-test" class="box">
    Click here to generate an event
  </span>
  <h2>

    Page semi-protected Blog From Wikipedia, the free encyclopedia "Blogger" redirects here. For the Google service with same name, see Blogger (service). For other uses, see Blog (disambiguation). Not to be confused with .blog. Journalism Simons Perskaart
    DOM.jpg News Writing style Ethics Objectivity News values Attribution Defamation Editorial independence Journalism school Index of journalism articles Areas Arts Business Data Entertainment Environment Fashion Medicine Politics Science Sports Technology
    Trade Traffic Weather World Genres Advocacy Analytic Blogging Broadcast Citizen Civic Collaborative Comics-based Community Data Database Gonzo Immersion Investigative Literary Muckraking Narrative "New Journalism" Non-profit Online Opinion Peace Photojournalism
    Scientific Sensor Underground Visual Watchdog Social impact Fake news Fourth Estate Fifth Estate Freedom of the press Infotainment Media bias Public relations Press service Propaganda model Yellow journalism News media Newspapers Magazines TV and
    radio Internet News agencies Alternative media Roles Journalists (reporters) Columnist Blogger Editor Copy editor Meteorologist News presenter Photographer Pundit / commentator Newspaper nicu buculei 01.svg Journalism portal Category: Journalism v
    t e A blog (a truncation of the expression "weblog")[1] is a discussion or informational website published on the World Wide Web consisting of discrete, often informal diary-style text entries ("posts"). Posts are typically displayed in reverse chronological
    order, so that the most recent post appears first, at the top of the web page. Until 2009, blogs were usually the work of a single individual,[citation needed] occasionally of a small group, and often covered a single subject or topic. In the 2010s,
    "multi-author blogs" (MABs) have developed, with posts written by large numbers of authors and sometimes professionally edited. MABs from newspapers, other media outlets, universities, think tanks, advocacy groups, and similar institutions account
    for an increasing quantity of blog traffic. The rise of Twitter and other "microblogging" systems helps integrate MABs and single-author blogs into the news media. Blog can also be used as a verb, meaning to maintain or add content to a blog. This
    page was last edited on 18 May 2017, at 21:34. Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered
    trademark of the Wikimedia Foundation, Inc., a non-profit organization. Privacy policyAbout WikipediaDisclaimersContact WikipediaDevelopersCookie statementMobile viewWikimedia Foundation Powered by MediaWiki
  </h2>
</body>

</html>
&#13;
&#13;
&#13;

ckPageview和trackEvent生成事件。 scrollPings没有。 有人试过这个吗? ** scrollPing的参考代码来自AMP by Example页面。 提前致谢

&#13;
&#13;
< amp - analytics type = "googleanalytics" >
  <script type = "application/json" > {
    "vars": {
      "account": "UA-XXXXXXXX-X"
    },
    "triggers": {
      "trackPageview": {
        "on": "visible",
        "request": "pageview"
      },
      "scrollPings": {
        "on": "scroll",
        "scrollSpec": {
          "verticalBoundaries": [10, 20, 30, 40, 50, 60, 70, 80, 90]
        },
        "request": "event",
        "vars": {
          "eventId": "scroll"
        }
      },
      "trackEvent": {
        "selector": "#event-test",
        "on": "click",
        "request": "event",
        "vars": {
          "eventCategory": "${canonicalUrl}",
          "eventAction": "click"
        }
      }

    }
  } 
</script> 
</amp-analytics>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

与我们的另一位开发人员合作,我们设法解决了这个问题,至少部分是这样。有一些URL替换变量,你需要使用verticalScrollBoundary来报告一个百分比(就像你在那里为你的测试事件做的那样)。请注意'${verticalScrollBoundary}%'变量之后的百分号是可选的,并添加到我们的分析报告中与非AMP滚动深度跟踪一致。

这对我们有用:

'scrollPings' => array(
  'on' => 'scroll',
  'request' => 'event',
  'scrollSpec' => array(
    'verticalBoundaries' => array( 0, 25, 50, 75, 100 )
  ),
  'vars' => array(
    'eventCategory' => 'AMP Scroll Depth',
    'eventAction'   => 'Scrolled',
    'eventLabel'    => '${verticalScrollBoundary}%',
  ),
),

道歉,那就是PHP语法被翻译成JSON b / c我们正在使用WordPress插件。对于JSON,它(我相信):

"scrollPings": {
  "on": "scroll",
  "request": "event",
  "scrollSpec": {
    "verticalBoundaries": [0, 25, 50, 75, 100]
  },
  "vars": {
    "eventCategory": "AMP Scroll Depth",
    "eventAction": "Scrolled",
    "eventLabel": "${verticalScrollBoundary}%"
  },
}

我们还没想到的一件事是它似乎记录了“(未设置)”或“%”的空值,如果你包含一个百分号,就像我在{{ 1}}变量。请注意,百分号是可选的。如果没有百分号,我们只会记录一个(未设置)值,这似乎不等于0(你会注意到我在可能值的数组中添加了0)。