c# - Google API Client Library for .NET - Missing documentation -
i'm trying generate page views , events asp.net mvc application using google analytics functionality available in library.
the documentation seems lacking, , unable understand how send page views , events. within controller returns partialviewresult
, need send page view google analytics service.
so far i've found 2 examples of how use library
- https://developers.google.com/api-client-library/dotnet/get_started
- https://developers.google.com/api-client-library/dotnet/guide/batch
however these various other api's not google analytics. example, in calendar api example there is: calendarservice.events.insert( event title, event description, time , date etc)
which used add new entry user's google calendar.
for example, can not do:
analytics analyticsservice = new analyticsservice(); analytics.pageviews.send(client id, user browser, date time, etc);
my question: how use google analytics api send page view in similar manner calendar api? appropriate methods/classes this?
Comments
Post a Comment