Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use Google's new measurement protocol for sending tracking events from my server instead of JavaScript.

This page says the client ID is required: https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide#required

And this page says it's optional: https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters#visitor

Plus, the format defined in these docs is different- the first page gives an integer as an example and just says it's "a unique value" while the second link says it should be a UUID.

If I send either user IDs or generated UUIDs on my backend, how will Google know to link that visitor to an existing visitor session? It seems like I would need to retrieve GA's internal reference to an existing user.

Any help is appreciated - thanks!

share|improve this question

1 Answer

Integrer or UUID

cid is the equivalent of the second value in the _utma cookie when you use the js tracking. In js tracking, it is a random interger (generated by Math.round(2147483647 * Math.random()). But it is strore and send as a string : so you can use both format (integer or UUID).

Required/Optional

With js tracking, a request send with a missing user id is ignored by Analytics servers. So asume that is required.

Link web visitor with measurement protocol actions*

If you want link your backend user with a visitor previously tracked with Analytics javascript, you can get the cid value from the _utma cookie. But I don't recommend it : each time it wil change (terminal or browser change, cookies cleaning, etc.), you will loose the link with your customer previous actions.

share|improve this answer
Isn't linking a backend user with a visitor previously tracked by analytics.js one of the main points of the 'measurement protocol', allowing correlation of referrers/campaigns/landing-pages with later non-web results? I suspect the right approach is to supply your own site's clientId from the get-go (using developers.google.com/analytics/devguides/collection/…), so that it's trivially available to both analytics.js's in-page tracking and your own later measurement-protocol operations. – gojomo May 16 at 4:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.