I'm baffled. Best I can tell, I'm following the examples to the letter. Maybe I'm missing a parameter but I can't find what it is.
var request = gapi.client.youtube.channels.list({
id: '<myId>',
part: 'contentDetails'
});
request.execute(function(response) {
console.log(response);
});
The console response has no items, but I have 3 playlists as public.
[Log] Object (learndataapi.html, line 68)
etag: "\"m2yskBQFythfE4irbTIeOgYYfBU/Rk41fm-2TD0VG1yv0-bkUvcBi9s\""
items: [] (0)
kind: "youtube#channelListResponse"
pageInfo: {totalResults: 0, resultsPerPage: 0}
result: {kind: "youtube#channelListResponse", etag: "\"m2yskBQFythfE4irbTIeOgYYfBU/Rk41fm-2TD0VG1yv0-bkUvcBi9s\"", pageInfo: {totalResults: 0, resultsPerPage: 0}, items: []}
Object Prototype
Any clues?