Retrieving individual videos view count - Youtube API V3.0 - JavaScript
问题 I've been trying to get the view count on videos that I query through the following method: function search() { var request = gapi.client.youtube.search.list({ part: 'snippet', channelId: 'IRRELEVANT', order: 'date', maxResults: '25' }); request.execute(function(response){ YoutubeResponse(response); }); While the documentation tells me that there's a statistics portion to every video, after the snippet I have __proto__ which I guess means there was an error somewhere? or did the API change?