I trying to do request to IPLogger to see which kind of systems using my software, I am not sure but seems like IPLogger couldn't see a client User Agent. So the question is how to make a request to URL with User Agent?
I tried this:
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(url);
myRequest.Method = "GET";
And this:
var data = new WebClient().DownloadString(url);
As you can see, client system and browser is unknown.
But when I do it manually from my browser it works fine.