如何获取频道的标题和描述?
How to get the title and description of a channel?
我想获取频道列表描述及其标题,例如
https://www.youtube.com/playlist?list=PLzvCFYRLS3sJcpeaY2FECjhYOKGqW2ZDW
将显示此信息:
channel title: top 50 english songs 2014
channel description: pop slow romance the best (Y) top 50 songs
arrange randomly :) hope u enjoy my first playlist
这是我正在使用的link,但它不包含频道描述和频道列表标题:
https://www.googleapis.com/youtube/v3/playlists?part=snippet&id=PLzvCFYRLS3sJcpeaY2FECjhYOKGqW2ZDW&key={YOUR-API-KEY}
将为您提供特定播放列表的信息。您可以从返回的 items
中获取 title
和 description
。
"title": "top 50 english songs 2014",
"description": "pop slow romance the best (Y) top 50 songs arrange randomly :) hope u enjoy my first playlist",
我想获取频道列表描述及其标题,例如
https://www.youtube.com/playlist?list=PLzvCFYRLS3sJcpeaY2FECjhYOKGqW2ZDW
将显示此信息:
channel title: top 50 english songs 2014
channel description: pop slow romance the best (Y) top 50 songs arrange randomly :) hope u enjoy my first playlist
这是我正在使用的link,但它不包含频道描述和频道列表标题:
https://www.googleapis.com/youtube/v3/playlists?part=snippet&id=PLzvCFYRLS3sJcpeaY2FECjhYOKGqW2ZDW&key={YOUR-API-KEY}
将为您提供特定播放列表的信息。您可以从返回的 items
中获取 title
和 description
。
"title": "top 50 english songs 2014",
"description": "pop slow romance the best (Y) top 50 songs arrange randomly :) hope u enjoy my first playlist",