Google Analytics API and .Net - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T00:11:57Z http://stackoverflow.com/feeds/question/791125 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/791125/google-analytics-api-and-net 12 Google Analytics API and .Net friism 2009-04-26T16:22:06Z 2009-06-17T17:47:49Z <p>Google announced the <a href="http://googledataapis.blogspot.com/2009/04/google-analytics-data-export-api-has.html" rel="nofollow">Analytics Data Export API</a> some days ago, thereby making it much easier to get analytics data for a site. The API debuted with Java and Javascript clients, but no direct .Net support (other than going straight for the XML). It seems the API is similar to the other Google Data APIs though, and there's a <a href="http://code.google.com/p/google-gdata/" rel="nofollow">.Net client for those</a>. Has anyone tried using the components in that library to get at the analytics data?</p> <p>I'm in the process of building an ASP.Net MVC site and thought I'd use Google Analytics to generate "Most viewed" lists and stuff like that (since Google is probably better at weeding out spurious requests, robots, etc.). If you have any thoughts on that idea, I'd much appreciate hearing them too.</p> http://stackoverflow.com/questions/791125/google-analytics-api-and-net/819575#819575 2 Answer by Dave Callan for Google Analytics API and .Net Dave Callan 2009-05-04T10:16:39Z 2009-05-04T10:16:39Z <p>Check out my post location here: <a href="http://www.akamarketing.com/blog/103-introducing-google-analytics-api-with-aspnet-c.html" rel="nofollow">http://www.akamarketing.com/blog/103-introducing-google-analytics-api-with-aspnet-c.html</a></p> <p>It's not using the built in library you mention but it's working pretty well. The whole API is XML/HTTP so it's pretty handy to use. You basically ask Google for a webpage and examine the response for what you need. </p> http://stackoverflow.com/questions/791125/google-analytics-api-and-net/916167#916167 5 Answer by kitsune for Google Analytics API and .Net kitsune 2009-05-27T14:48:45Z 2009-05-27T14:48:45Z <p>Check the <a href="http://code.google.com/p/google-gdata/source/browse/" rel="nofollow">trunk</a> of Google's .NET library, they have added Analytics support.</p> <p>Also check their groups post on this:</p> <p><a href="http://groups.google.com/group/gdata-dotnet-client-library/browse%5Fthread/thread/2d2eec9103b731c6" rel="nofollow">http://groups.google.com/group/gdata-dotnet-client-library/browse_thread/thread/2d2eec9103b731c6</a></p> <p>and</p> <p><a href="http://groups.google.com/group/gdata-dotnet-client-library/browse%5Fthread/thread/70c6638734823b8d" rel="nofollow">http://groups.google.com/group/gdata-dotnet-client-library/browse_thread/thread/70c6638734823b8d</a></p>