1.5 KiB
1.5 KiB
title, type, tags, date
| title | type | tags | date | |||
|---|---|---|---|---|---|---|
| How to get YouTube Channel ID | source |
|
2025-03-16 |
Source File
Summary
- 核心主题:获取 YouTube 频道 ID 的方法
- 问题域:n8n 工作流接入 YouTube 数据时需要 channel_id 参数
- 方法/机制:通过 view-source 页面查询
?channel_id字符串 - 结论/价值:channel_id 可用于构建 YouTube RSS Feed URL,进而接入 n8n 自动化
Key Claims
- YouTube 频道页面通过 view-source 可直接查询 channel_id
- 查询到的 channel_id 格式为
UCxxxxxxxxxxxxxxxxx - channel_id 可拼接为 RSS Feed URL:
https://www.youtube.com/feeds/videos.xml?channel_id=UCxxx
Key Quotes
view-source:https://www.youtube.com/@Numberblocks— 通过此方式绕过 UI 直接访问源码"?channel_id"— 在源码中搜索此字符串即可定位 channel_id
Key Concepts
- YouTube Channel ID:YouTube 频道唯一标识符,格式为 UC 前缀的 24 字符字符串
- YouTube RSS Feed:通过 channel_id 生成的 XML 订阅源,可被 n8n 等工具消费
Key Entities
Connections
- YouTube RSS Feed ← used_in ← n8n YouTube Workflow
- YouTube Channel ID ← extracted_from ← YouTube Channel Page Source
Contradictions
- 无冲突
Metadata
- 作者:shenwei
- 创建时间:2025-03-16
- 原始标签:[]