You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With a little help from a cheatsheet website the parameters have somewhat been "decoded" now.
/** * Using V1 parameters to imulate a page view through server side \ * Be aware that this requires custom client_id and may result in loss of demographic information * @link https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters * @link https://www.thyngster.com/ga4-measurement-protocol-cheatsheet/ * @param string v Protocol Version eg "2" * @param string tid Tracking ID eg "G-xxx" * @param bool aip Anonymize IP eg "true" * @param string gtm GTM Hash Info * @param string _p Random load hash // Math.floor(Math.random() * (2147483647 - 0 + 1) + 0) * @param string _z * @param string cid Client ID eg Cookie._ga or Cookie._gid or Session ID * @param string uid User ID eg "customer_1" * @param string ul User Language eg "en-us" * @param string sr Screen resolution eg "1920x1080" * @param string sid Session ID * @param string sct Session Count // Incresed by 1 per session registered (expired) * @param string seg Session Engagement eg "1" * @param string dl Document Location eg http://foo.com/home?a=b as http%3A%2F%2Ffoo.com%2Fhome%3Fa%3Db * @param string dr Document Referer eg http://example.com as http%3A%2F%2Fexample.com * @param string dt Document Title eg <title>THIS</title> * @param int _s Hit Counter eg "1" */
Studying the PageView request made by GTAG in JavaScript it seems that parameter names are the same as V1 but with limited parameter scope.
https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters
GET Parameters
Body Parameters
The text was updated successfully, but these errors were encountered: