Menu
  • HOME
  • TAGS

analytics.js passing in timestamp

javascript,google-analytics,google-analytics-api,measurement-protocol

You are correct the iOs sdk lets you use something called Dispatching this allows you to send data that is up to 4 hours old. This works directly with the Measurement Protocol where it is called Queue Time Used to collect offline / latent hits. The value represents the time...

Passing an asterisk and number in key of a key:value pair

jquery,google-analytics,measurement-protocol

That's a javascript error telling you that * is not a valid character in an objects key unless it's quoted as a string $.ajax({ url: 'http://google-analytics.com/collect', type: 'POST', data: { v: '1', tid: 'UA-3679639-17', cid: '1974905664.1397752793', t: 'transaction', ti: '456', tr: '100.00', tt: '5.50', ts: '9.99', 'cm*2': '50.00', // needs...

gms.analytics.GoogleAnalytics - NoClassDefFoundError

android,google-analytics,noclassdeffounderror,android-5.0-lollipop,measurement-protocol

You need to link Google Play Services as Library project. You can read more about Library projects on the official site. Shortly - you need to use library projects when additional projects includes not only source code, but resources also (layouts, strings). If you need to use library that includes...

UserId, CID in measurement protocol

google-analytics,universal-analytics,measurement-protocol

A long time after but that could help other people ... My understanding is that the CID references a device while the UserID references an authenticated user. So basically, all the hits with the same Client ID or User ID will be associated to the same user in GA (take...

What is the rate limit for direct use of the Google Analytics Measurement Protocol API?

google-analytics,measurement-protocol

Directly from the documentation Google Analytics Collection Limits and Quotas These limits apply to the Web Property / Property / Tracking ID. 10 million hits per month per property Measurement protocol Universal Analytics Enabled This applies to analytics.js, Android iOS SDK, and the Measurement Protocol. 200,000 hits per user per...

New users vs active users in Measurement protocol

google-analytics,measurement-protocol

CID actually stands for client-id = random number generated by Google Analytics when you come to a website for the first time. You can easily grab it (even with GTM) and use it with Measurement Protocol. If you use client-id that GA can recognize, it will stitch the data together...

Google Measurement Protocol not showing events

measurement-protocol

Got the answer as soon as I created the question. ev must be a number. http://www.google-analytics.com/collect?v=1&tid=TIDHERE&t=event&cid=b541778c-8640-4f52-b1b6-3b18d9e58c0c&ec=Cat&ea=Action&el=label&ev=1 ...

Measurement protocol Usage

google-analytics,measurement-protocol

I think your having an issue with understanding what the Measurement Protocol is. You said: Trying to fetch the results and load it in iframe of an registered tid domain. What the measurement protocol is for: Measurement Protocol Overview The Google Analytics Measurement Protocol allows developers to make HTTP requests...

Google analytics measurement protocol not working for goal conversion

google-analytics,measurement-protocol

In your screenshot your goal definition is looking for exact matches for the string "/phone/". However the document path you are transmitting is dp=/phone/+16475601035/+15687895678/+18765674876/ If you want to register a goal for that destinantion you need to change the condition in your goal definition from ""equals" to "begins with". So...

Google Analytics Measurement Protocol / real time events not showing

google-analytics,measurement-protocol

Not a full answer I am just trying to help debugging: For app accounts its &t=screenview not &t=pageview For app accounts the following are undocumented required fields an – Application name example: an=My%20Awesom%20APP aid – application id example: aid=com.daimto.awesom.app av – application version example: av=1.0.0 aiid – Application Installer ID...

Get the cid for Google Analytics in PHP/Zend Framework

php,zend-framework,google-analytics,measurement-protocol

All of the parameters sent directly through the Measurement protocol must be created by you. Client ID / Cid This anonymously identifies a particular user, device, or browser instance. For the web, this is generally stored as a first-party cookie with a two-year expiration. For mobile apps, this is randomly...