_analyticService = new YoutubeAnalyticsService(_authenticator = CreateAuthenticator()); ... var result = _analyticService.Reports.Query("channel==myChannelCode", "2013-01-01", "2013-02-02", "views").Fetch();
I have created a new Youtube analytic Service and I have sent the server a query. My goal is to get the number of views the user has on his videos.
How do I use result to do this?