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

I'm trying to use Google Analytics from our backend system by posting events to it. Is there any way to do this with GA's API on server-side?

Thanks!

share|improve this question

4 Answers

The simple answer is no - not without a lot of effort.

The 'yes' answer would be that, depending on your servers language options, you could write some code that created a browser context and faked the transactions to Google Analytics. You could probably even get as advanced as reading the GA cookies from your particular visitors and carrying those values into your fake browser context.

There is currently no known, public, GA API for server side analytics tracking.

UPDATE

It is now possible (and easy) to track Analytics data from the server-side. With the beta launch of Universal Analytics, you can start using the Measurement Protocol to post data to the GA servers.

Code samples here

share|improve this answer
This should be accepted answer. We probably are in a similar situation like OP where we want to have fairly accurate revenue figure with website visitors data. And browser side tracking just not good enough for the last step of completing payment (for e.g. customer does not come back from payment provider site). – Tadas Sasnauskas May 17 at 12:29

To track an event in GA, use the following structure:

_gaq.push(['_trackEvent', 'Category', 'Action']);

eg

_gaq.push(['_trackEvent', 'Sales', 'Click']);

see http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html

share|improve this answer
Yeah, this is with JavaScript. Is there any way to do this server-side? (Sorry, I wasn't specific on server-side before.) – X__ Feb 29 '12 at 17:07

There is now an official guide here! Hope it helps!

share|improve this answer

Specify the server-side language, please.

You can even run JS on server.

Here's for python, for example:

https://bitbucket.org/DataGreed/pyga

share|improve this answer

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.