Use Google Analytics in AMP HTML
<amp-pixel src="https://ssl.google-analytics.com/collect?v=1&tid=UA-12345678-1&t=pageview&cid=$RANDOM&dt=$TITLE&dl=$CANONICAL_URL&z=$RANDOM"></amp-pixel> | |
/* | |
* Required parameters: | |
* v = API version number (currently 1) | |
* tid = Google Analytics property identifier (UA-12345678-1) | |
* t = hit type | |
* cid = client id (you should implement this via cookie etc.) | |
* z = random string to bypass caching (amphtml generates this to $RANDOM variable) | |
* | |
* Some nice to have parameters: | |
* dt = document title ($TITLE) | |
* dl = document location ($CANONICAL_URL) | |
* | |
* References: | |
* https://github.com/ampproject/amphtml/blob/master/builtins/amp-pixel.md | |
* https://developers.google.com/analytics/devguides/collection/protocol/v1/reference | |
*/ |
This comment has been minimized.
This comment has been minimized.
I guess this is superseded by this now? https://developers.google.com/analytics/devguides/collection/amp-analytics/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Do you need to add
$
before the variables? ref: https://github.com/ampproject/amphtml/blob/master/spec/amp-var-substitutions.md, linked from https://github.com/ampproject/amphtml/blob/master/builtins/amp-pixel.md