使用Youtube API搜索频道

时间:2014-08-21 13:55:05

标签: ios iphone youtube-api youtube-data-api youtube-channels

我在Youtube Data Api V3应用中使用iOS。有些人可以通过名字给我一些搜索事物的例子。

我正在尝试以下方式,但它不起作用

https://www.googleapis.com/youtube/v3/search/list?key= {YOUR_API_KEY}&安培;部分=片断&安培;类型=信道&安培; Q = AnimalPlanetTV

任何人都可以帮助我如何按名称获取频道数据

由于

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:-1)

这是live example

您需要使用API​​ V3的Channel list

结果与snippet

类似
{
 "kind": "youtube#channelListResponse",
 "etag": "\"gMjDJfS6nsym0T-NKCXALC_u_rM/RKAMAh1QnoE3ilYYcvWIqvcDEZo\"",
 "pageInfo": {
  "totalResults": 1,
  "resultsPerPage": 5
 },
 "items": [
  {

   "kind": "youtube#channel",
   "etag": "\"gMjDJfS6nsym0T-NKCXALC_u_rM/MenmiFqQVVN5JQ9MJpC9gddZ4Lw\"",
   "id": "UCkEBDbzLyH-LbB2FgMoSMaQ",
   "snippet": {
    "title": "Animal Planet",
    "description": "Animal Planet is the world's only entertainment brand that immerses viewers in the full range of life in the animal kingdom with rich, deep content via multiple platforms and offers animal lovers and pet owners access to a centralized online, television and mobile community for immersive, engaging, high-quality entertainment, information and enrichment.",
    "publishedAt": "2007-02-14T18:26:59.000Z",
    "thumbnails": {
     "default": {
      "url": "https://yt3.ggpht.com/-FEsYkupUb-A/AAAAAAAAAAI/AAAAAAAAAAA/6SiqnVvRZJY/s88-c-k-no/photo.jpg"
     },
     "medium": {
      "url": "https://yt3.ggpht.com/-FEsYkupUb-A/AAAAAAAAAAI/AAAAAAAAAAA/6SiqnVvRZJY/s240-c-k-no/photo.jpg"
     },
     "high": {
      "url": "https://yt3.ggpht.com/-FEsYkupUb-A/AAAAAAAAAAI/AAAAAAAAAAA/6SiqnVvRZJY/s240-c-k-no/photo.jpg"
     }
    }
   }
  }
 ]
}