My application has some menu buttons that sends the users to my website.

I want to differentiate in the website how many users came from my app, out of all the regular users.

My app is written in C#, and currently I direct users like this:

string url = "http://mysite/somepage";
System.Diagnostics.Process.Start(url);

On the server side, I use Piwik for my web paralytics.

Any suggestions?


Update

One good solution will be to add some parameter to the URL. Yet I was wondering if it's possible to play with the referrer field, for the sake paralytics simplicity.

link|improve this question

78% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Add something to the url, probably in the querystring that identifies that the user has originated from your application, like:

string url = "http://mysite/somepage?source=myApplication";
System.Diagnostics.Process.Start(url);

You can/could also use this to track the versions of your app that are in use by adding more to the url, for example ?source=myApplication&version=1.0.3 =)

link|improve this answer
that's simple enough... tnx. I thought about adding some fake referrer. is that possible? (will be separated nicer in my piwik) – Amirshk Feb 12 '10 at 8:47
All you're doing is passing the URL off to the system which will open the browser; you have no control of the Referer header. The URL is simpler and more reliable (e.g. proxies that could potentially alter or remove the referrer). – Christopher Feb 12 '10 at 8:50
good point. forgot about the proxy problem – Amirshk Feb 12 '10 at 8:51
feedback

Just add a parameter to the URL coming from your app, other users will not have that:

string url = "http://mysite/somepage?fromApp=v1";

On your website, you can pick that up to differentiate users. Do a redirect immediately after, so they will not bookmark the page with this URL.

link|improve this answer
that's simple enough... tnx. I thought about adding some fake referrer. is that possible? (will be separated nicer in my piwik) – Amirshk Feb 12 '10 at 8:46
feedback

Can't you just add some parameter to the URL your application is using and use that to filter users coming from your app?

link|improve this answer
I could. I thought about using referrer, not sure if it's too complicated. – Amirshk Feb 12 '10 at 8:47
feedback

Your Answer

 
or
required, but never shown

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