如何使用API V3获取chanel封面?

问题描述 投票:0回答:1

我有这个js代码

$.getJSON('https://www.googleapis.com/youtube/v3/channels?part=snippet,statistics&id=UCAeWo3hCZSmoEaM-vJyzsfg&key=KEY', function(data) {
var chBnrUrl = data.items[0].brandingSettings.image.bannerImageUrl;
alert(chBnrUrl);
 });

但我不知道为什么警报中没有取出徽标?

javascript jquery youtube google-api youtube-api
1个回答
1
投票

Channel.list返回channel resource但是并非所有信息都是公开的。某些字段只能为频道所有者返回。您似乎正在使用api密钥,该密钥仅返回有关该频道的公共信息。如果您是频道的所有者,则应使用oauth2并验证此请求,然后您应该看到所有信息。

请求:

获取https://www.googleapis.com/youtube/v3/channels?part=snippet%2Cstatistics&id=UCAeWo3hCZSmoEaM-vJyzsfg&key= {YOUR_API_KEY}

响应:

{
 "kind": "youtube#channelListResponse",
 "etag": "\"RmznBCICv9YtgWaaa_nWDIH1_GM/eeWwfxY-1l2O08f8ZaRnNotNxAw\"",
 "pageInfo": {
  "totalResults": 1,
  "resultsPerPage": 1
 },
 "items": [
  {


   "kind": "youtube#channel",
   "etag": "\"RmznBCICv9YtgWaaa_nWDIH1_GM/AsC3_c59Ey-DtR_xdRsD6S1QtDg\"",
   "id": "UCAeWo3hCZSmoEaM-vJyzsfg",
   "snippet": {
    "title": "G & Kids Future",
    "description": "• Welcome all the guests channel G & Kids Future! ♥\n\n• G & Kids Future - Youtube channel for children, for girls and boys. This is the channel for all kids searching for entertainment. Enjoy the channel and subscribe to get to the newest updates!\n\n• Thank you for visiting our channel !!!",
    "customUrl": "gkidsfuture92",
    "publishedAt": "2016-01-07T04:47:47.000Z",
    "thumbnails": {
     "default": {
      "url": "https://yt3.ggpht.com/-HBvDBX_Fwjw/AAAAAAAAAAI/AAAAAAAAAAA/aCgthXWsd-g/s88-c-k-no-mo-rj-c0xffffff/photo.jpg",
      "width": 88,
      "height": 88
     },
     "medium": {
      "url": "https://yt3.ggpht.com/-HBvDBX_Fwjw/AAAAAAAAAAI/AAAAAAAAAAA/aCgthXWsd-g/s240-c-k-no-mo-rj-c0xffffff/photo.jpg",
      "width": 240,
      "height": 240
     },
     "high": {
      "url": "https://yt3.ggpht.com/-HBvDBX_Fwjw/AAAAAAAAAAI/AAAAAAAAAAA/aCgthXWsd-g/s800-c-k-no-mo-rj-c0xffffff/photo.jpg",
      "width": 800,
      "height": 800
     }
    },
    "localized": {
     "title": "G & Kids Future",
     "description": "• Welcome all the guests channel G & Kids Future! ♥\n\n• G & Kids Future - Youtube channel for children, for girls and boys. This is the channel for all kids searching for entertainment. Enjoy the channel and subscribe to get to the newest updates!\n\n• Thank you for visiting our channel !!!"
    }
   },
   "statistics": {
    "viewCount": "257607760",
    "commentCount": "0",
    "subscriberCount": "895691",
    "hiddenSubscriberCount": false,
    "videoCount": "150"
   }
  }
 ]
}

你没有看到data.items[0].brandingSettings.image.bannerImageUrl;因为brandingSettings不是响应测试的一部分tryme

© www.soinside.com 2019 - 2024. All rights reserved.