i want to send request to Google analytics in non web based application(Windows based application) ?
i tried following method.
public string trackingId = "UA-XXXXXXXX-2";
private void button1_Click(object sender, EventArgs e)
{
string shopname = "ShopTestng";
string pagename="Testing_MyApp";
callAnalyticsmethod2(pagename, shopname);
}
private void callAnalyticsmethod2(string pageName, string shopname)
{
// create hash code base on pc name 7 user name
string visitorId = GetUniqueUserId();
if (string.IsNullOrEmpty(pageName))
pageName = visitorId;
string utmGifLocation = "http://www.google-analytics.com/__utm.gif";
string GifUrl = "utmwv=4.9" +
"&utmn=" + GetRandomNumber() +
"&utmp=" + pageName +
"&utmac=" + trackingId +
"&utmcc=__utma%3D999.999.999.999.999.1%3B" +
"&utmvid=" + visitorId;// + "?" +
string shop = shopname.Replace(" ", "_");
string addipara = GifUrl+"&utmr=http://" + shop;
byte[] dataStream = Encoding.UTF8.GetBytes(addipara);
string request = utmGifLocation;
WebRequest webRequest = WebRequest.Create(request);
webRequest.Method = "POST";
webRequest.ContentType = "application/x-www-form-urlencoded";
webRequest.ContentLength = dataStream.Length;
Stream newStream = webRequest.GetRequestStream();
// Send the data.
newStream.Write(dataStream, 0, dataStream.Length);
newStream.Close();
WebResponse webResponse = webRequest.GetResponse();
MessageBox.Show((((HttpWebResponse)webResponse).StatusDescription));
newStream = webResponse.GetResponseStream();
StreamReader reader = new StreamReader(newStream);
string responseFromServer = reader.ReadToEnd();
MessageBox.Show(responseFromServer);
reader.Close();
newStream.Close();
webResponse.Close();
}
according to the above code sample
MessageBox.Show((((HttpWebResponse)webResponse).StatusDescription));
line display as “OK”. but when i check Google analytics, visit count doesn’t increase. what is the reason for this?
is there something i missing or any other way to send request to analytics?
i found similar answer from SOF (Cause Google Analytics log from non-web application and editted it according to my scenario.
I found good Articles about –
Google Analytics for Desktop Application