Generate Google Analytics events (__utm.gif requests) serverside - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T03:10:30Zhttp://stackoverflow.com/feeds/question/1027660http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1027660/generate-google-analytics-events-utm-gif-requests-serverside1Generate Google Analytics events (__utm.gif requests) serversidePokot02009-06-22T14:52:27Z2009-10-19T09:15:09Z
<p>Hi, I am willing to use Google Analytics to track stats about usage of my Client/Server application (no Browser on the user computer!).</p>
<p>So I guess if anyone ever tried to craft requests to __utm.gif from serverside code.</p>
<p>I have found some information on the request and relevant cookies at <a href="http://code.google.com/intl/en-US/apis/analytics/docs/tracking/gaTrackingTroubleshooting.html#gifParameters" rel="nofollow">google website</a> but there are no details on the cookies values passed in the "utmcc" variable.</p>
<p>I understand that I will not be able to "craft" some of the information which Analytics server derives from the request itself (one for all: the source IP address!). I can't generate requests from the Client computer.</p>
<p>Does anyone have experience with this scenario? Any detailed information or resource? Any working code snippet (any language will do! :)?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1027660/generate-google-analytics-events-utm-gif-requests-serverside/1027759#10277590Answer by Michael Wiles for Generate Google Analytics events (__utm.gif requests) serversideMichael Wiles2009-06-22T15:12:18Z2009-06-22T15:12:18Z<p>Interesting requirement...</p>
<p>Your best bet would probably be to attempt to reverse engineer the google analytics javascript a little...</p>
<p>With firefox, and firebug, go to a web site that uses google analytics then open firebug and look at the GET that is submitted to google analytics. If you can then create an HttpRequest with those same parameters and headers you should be able to fool google analytics into thinking you're coming from a web page.</p>
http://stackoverflow.com/questions/1027660/generate-google-analytics-events-utm-gif-requests-serverside/1027949#10279491Answer by Hardwareguy for Generate Google Analytics events (__utm.gif requests) serversideHardwareguy2009-06-22T15:50:39Z2009-06-22T15:50:39Z<p>From inspecting my cookies in firefox for a site that is a known user of google analytics I see it stores 3 values (all 3 start with 2 underscores):</p>
<ul>
<li>__utmc - 9 digit integer (probably)</li>
<li>__utma - very long integer with periods thrown in (starts with 9 digits above)</li>
<li>__utmz - long string period seperated (starts with 9 digits from utmc)</li>
</ul>
<p>My guess is utmc is your tracking session id.</p>
http://stackoverflow.com/questions/1027660/generate-google-analytics-events-utm-gif-requests-serverside/1080426#10804262Answer by Andy E for Generate Google Analytics events (__utm.gif requests) serversideAndy E2009-07-03T18:37:29Z2009-07-03T18:37:29Z<p>I asked a similar question recently and somebody gave me a link, and I found another from the same site:</p>
<p><a href="http://www.vdgraaf.info/wp-content/uploads/image-url-explained.txt" rel="nofollow">http://www.vdgraaf.info/wp-content/uploads/image-url-explained.txt</a><br />
<a href="http://www.vdgraaf.info/wp-content/uploads/urchin-image.txt" rel="nofollow">http://www.vdgraaf.info/wp-content/uploads/urchin-image.txt</a></p>
<p>I haven't fully tested it yet, I'm still working on implementing it. Also, it seems like it's a little old and there's no documentation of how to log events, only page views.</p>
http://stackoverflow.com/questions/1027660/generate-google-analytics-events-utm-gif-requests-serverside/1080443#10804430Answer by Chris for Generate Google Analytics events (__utm.gif requests) serversideChris2009-07-03T18:42:10Z2009-07-03T18:42:10Z<p>Embed the script in an HTML page with variable placeholders for page title and such, then load the page in an embedded IE instance server side. The GA script allows you to track page events by specifying parameters to the main tracking function, so all you'd have to do is keep the template HTML page in memory, replace the placeholders, and load the page in the embedded IE instance. The IE instance would parse and execute the javascript like it were a normal page and bingo, you've got your tracking.</p>
<p>This is theoretical, of course, and not tested.</p>
http://stackoverflow.com/questions/1027660/generate-google-analytics-events-utm-gif-requests-serverside/1394059#13940590Answer by Raj for Generate Google Analytics events (__utm.gif requests) serversideRaj2009-09-08T13:31:55Z2009-09-08T13:31:55Z<p>Hello, Is there any updated documentation for this.
I am trying tracking analytics events with ASP.NET.
I need to track some events in the Server Side after some functionality is completed on Server Side.
How to adjust this on Server Side. I am a newbie on this?
Appreciate help regarding this.</p>
<p>Thanks,
Raj</p>
http://stackoverflow.com/questions/1027660/generate-google-analytics-events-utm-gif-requests-serverside/1561069#15610691Answer by schellmax for Generate Google Analytics events (__utm.gif requests) serversideschellmax2009-10-13T15:40:04Z2009-10-19T09:15:09Z<p>you might want to give <a href="http://code.google.com/p/serversidegoogleanalytics/" rel="nofollow">http://code.google.com/p/serversidegoogleanalytics/</a> a try.
its working for me (in combination with zend framework for the http request).</p>