Link to home
Start Free TrialLog in
Avatar of RayT
RayTFlag for United States of America

asked on

Get YouTube videos

How do I modify the code to retrieve YouTube videos on a specific channel?

var apiKey = "AIzaSyCIlwa-7d7qpKS0Nj5vhI7tb-0minC-qZ8";
var maxNumberOfVideos = 10;


var YouTube = {
    LoadVideos: function (channelName, apiKey, maxNumberOfVideos) {
        $(document).ready(function () {
            $.get("https://www.googleapis.com/youtube/v3/channels", {
                part: "contentDetails",
                forUsername: channelName,
                key: apiKey
                },
                function (data) {
                    $.each(data.items, function (i, item) {
                        pid = item.contentDetails.relatedPlaylists.uploads;
                        YouTube.getVideos(pid, apiKey, maxNumberOfVideos);
                    })
                }
        );
        });
    },

    getVideos: function (pid, apiKey, maxNumberOfVideos) {
        $.get("https://www.googleapis.com/youtube/v3/playlistItems", {
            part: "snippet",
            maxResults: maxNumberOfVideos,
            playlistId: pid,
            key: apiKey},
            function (data) {
                $.each(data.items, function (i, item) {
                    $("<img/>").attr({src:item.snippet.thumbnails.default.url}).appendTo("body");
                })
            }
        );
    },

    PlayVideo: function (url, width, height) {
        $('#ytplayer').attr('src', url);
        $('#ytplayer').attr('width', width);
        $('#ytplayer').attr('height', height);
    }
}

YouTube.LoadVideos("OneDirectionVEVO", "AIzaSyCIlwa-7d7qpKS0Nj5vhI7tb-0minC-qZ8", 10);

Open in new window

Avatar of leakim971
leakim971
Flag of Guadeloupe image

I believe "OneDirectionVEVO" is the channel no?
Avatar of RayT

ASKER

No.  nsm4925
ASKER CERTIFIED SOLUTION
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RayT

ASKER

Thanks!  I really like this version better than the previous one.  It is easier to work with.
Avatar of RayT

ASKER

Thanks!