I'm trying to submit a virtual pageview to track events within application, that may not be associated with user visiting a page, and therefore will not allow for execution of javascript. The project is in python on GAE.

So far, I've tried to submit a pageview via an image API via a GET request, but that does't seem to work. Here's a sample URL:

http://www.google-analytics.com/__utm.gif?utmac=UA-<account_ID>-1&utmp=/<event>/<date>

Given a Google Analytics account ID and domain as the only information, how do I submit a pageview to Google Analytics from server side?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can use this lib that sends the required request to Google Analytics to mimic a page view event.

link|improve this answer
There's a fork that caters specifically to GAE APIs github.com/singhj/… – yahelc Jan 2 at 22:20
Thanks! I'll try it out. – Sologoub Jan 3 at 3:09
Haven't tried this yet, but went through the code and it seems like what I need. Thanks again! – Sologoub Jan 4 at 0:21
That code, particularly the fork, is a disaster. I'd recommend going back to the original PHP samples google gives out, and porting it yourself. It's only a few lines. – jesmith Feb 24 at 15:18
feedback

Your Answer

 
or
required, but never shown

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