AngularJS 1.x service for Google Youtube API
- getChannelStats
- getChannelPlaylists
- getPlaylistItems
- getVideoDetails
Just add the service as dependency to your controller and make a call. You need to obtain an API-key before.
ngYTInsights.getChannelStats('YOUR_CHANNELNAME')
.then(
function( response ) {
$scope.channeldata = response;
}
);