Google Analytics without Javascript

I thought a few months ago I saw something that allowed you to send GA requests without using Javascript (i.e., server side).

We have some RSS feeds that we would like to track using GA, but for obvious reasons, we cannot without using Javascript.

This is for the ASP.Net site.

+4
source share
4 answers

I would suggest that you can use Mobile Code - there is an example ASP.NET:

Google Analytics for Mobile

+3
source

You can use the GoogleAnalyticsTracker , which works for asp.net (also available through NuGet). I also made a quick port for a Windows phone if you are interested.

+2
source

When you know which URL you should use for the image, you can directly call the image and send the same data. You should be able to request the URL of the image.

The link here claims to be implemented, but this example is provided in PHP. Just check if you can apply the logic in asp.net.

+1
source

There is currently no JavaScript version other than javascript, but this is not possible, to create / manage cookies, you will need several extensive scripts on the server side and generate the corresponding __utm.gif calls to view pages and transactions.

If you solve the problem, you can use Firebug (for Firefox) to get the exact URL / _utm.gif and try to recreate them.

0
source

All Articles