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!
|
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! |
||||
|
|
|
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. |
|||||
|
|
To track an event in GA, use the following structure:
eg
see http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html |
|||
|
|
Specify the server-side language, please. You can even run JS on server. Here's for python, for example: |
|||
|
|