docs: replace Youtube with YouTube (#6065)
This commit is contained in:
parent
c4892fd546
commit
7d1da3b142
|
|
@ -205,7 +205,7 @@
|
|||
],
|
||||
},
|
||||
'youtube.com': {
|
||||
_name: 'Youtube',
|
||||
_name: 'YouTube',
|
||||
www: [
|
||||
{
|
||||
title: '用户',
|
||||
|
|
|
|||
|
|
@ -113,6 +113,6 @@ Official RSS: https://eztv.io/ezrss.xml
|
|||
|
||||
<RouteEn author="fallenhh" example="/soundcloud/tracks/angeart" path="/soundcloud/tracks/:user" :paramsDesc="['User name']" />
|
||||
|
||||
## Youtube
|
||||
## YouTube
|
||||
|
||||
Refer to [#youtube](/en/social-media.html#youtube)
|
||||
|
|
|
|||
|
|
@ -226,7 +226,7 @@ This route requires Twitter token's corresponding id, therefore it's only availb
|
|||
|
||||
<RouteEn author="sakamossan" example="/twitter/trends/23424856" path="/twitter/trends/:woeid?" :paramsDesc="['Yahoo! Where On Earth ID. default to woeid=1 (World Wide)']" radar="1" rssbud="1"/>
|
||||
|
||||
## Youtube
|
||||
## YouTube
|
||||
|
||||
::: tip Tiny Tiny RSS users please notice
|
||||
|
||||
|
|
|
|||
|
|
@ -459,7 +459,7 @@ pageClass: routes
|
|||
|
||||
<Route author="sakamossan" example="/yahoo-jp-tv/%E8%8A%B1%E6%BE%A4%E9%A6%99%E8%8F%9C" path="/yahoo-jp-tv/:query" :paramsDesc="['搜索查询']"/>
|
||||
|
||||
## Youtube
|
||||
## YouTube
|
||||
|
||||
见 [#youtube](/social-media.html#youtube)
|
||||
|
||||
|
|
|
|||
|
|
@ -540,11 +540,11 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
|
|||
|
||||
<Route author="kt286" example="/vuevideo/971924215514" path="/vuevideo/:userid" :paramsDesc="['用户ID, 可在对应页面的 URL 中找到']"/>
|
||||
|
||||
## Youtube
|
||||
## YouTube
|
||||
|
||||
::: tip Tiny Tiny RSS 用户请注意
|
||||
|
||||
Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性,导致无法加载 Youtube 内嵌视频,如果需要使用内嵌视频请为 Tiny Tiny RSS 安装 [remove_iframe_sandbox](https://github.com/DIYgod/ttrss-plugin-remove-iframe-sandbox) 插件
|
||||
Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性,导致无法加载 YouTube 内嵌视频,如果需要使用内嵌视频请为 Tiny Tiny RSS 安装 [remove_iframe_sandbox](https://github.com/DIYgod/ttrss-plugin-remove-iframe-sandbox) 插件
|
||||
|
||||
:::
|
||||
|
||||
|
|
|
|||
|
|
@ -226,7 +226,7 @@ router.get('/twitter/followings/:id/:routeParams?', require('./routes/twitter/fo
|
|||
router.get('/twitter/keyword/:keyword/:routeParams?', require('./routes/twitter/keyword'));
|
||||
router.get('/twitter/trends/:woeid?', require('./routes/twitter/trends'));
|
||||
|
||||
// Youtube
|
||||
// YouTube
|
||||
router.get('/youtube/user/:username/:embed?', require('./routes/youtube/user'));
|
||||
router.get('/youtube/channel/:id/:embed?', require('./routes/youtube/channel'));
|
||||
router.get('/youtube/playlist/:id/:embed?', require('./routes/youtube/playlist'));
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ const config = require('@/config').value;
|
|||
|
||||
module.exports = async (ctx) => {
|
||||
if (!config.youtube || !config.youtube.key) {
|
||||
throw 'Youtube RSS is disabled due to the lack of <a href="https://docs.rsshub.app/install/#%E9%83%A8%E5%88%86-rss-%E6%A8%A1%E5%9D%97%E9%85%8D%E7%BD%AE">relevant config</a>';
|
||||
throw 'YouTube RSS is disabled due to the lack of <a href="https://docs.rsshub.app/install/#%E9%83%A8%E5%88%86-rss-%E6%A8%A1%E5%9D%97%E9%85%8D%E7%BD%AE">relevant config</a>';
|
||||
}
|
||||
const id = ctx.params.id;
|
||||
const embed = !ctx.params.embed;
|
||||
|
|
@ -13,9 +13,9 @@ module.exports = async (ctx) => {
|
|||
const data = (await utils.getPlaylistItems(playlistId, 'snippet,contentDetails')).data.items;
|
||||
|
||||
ctx.state.data = {
|
||||
title: `${data[0].snippet.channelTitle} 的 Youtube 视频`,
|
||||
title: `${data[0].snippet.channelTitle} 的 YouTube 视频`,
|
||||
link: `https://www.youtube.com/channel/${id}`,
|
||||
description: `${data[0].snippet.channelTitle} 的 Youtube 视频`,
|
||||
description: `${data[0].snippet.channelTitle} 的 YouTube 视频`,
|
||||
item: data
|
||||
.filter((d) => d.snippet.title !== 'Private video' && d.snippet.title !== 'Deleted video')
|
||||
.map((item) => {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ const config = require('@/config').value;
|
|||
|
||||
module.exports = async (ctx) => {
|
||||
if (!config.youtube || !config.youtube.key) {
|
||||
throw 'Youtube RSS is disabled due to the lack of <a href="https://docs.rsshub.app/install/#%E9%83%A8%E5%88%86-rss-%E6%A8%A1%E5%9D%97%E9%85%8D%E7%BD%AE">relevant config</a>';
|
||||
throw 'YouTube RSS is disabled due to the lack of <a href="https://docs.rsshub.app/install/#%E9%83%A8%E5%88%86-rss-%E6%A8%A1%E5%9D%97%E9%85%8D%E7%BD%AE">relevant config</a>';
|
||||
}
|
||||
const id = ctx.params.id;
|
||||
const embed = !ctx.params.embed;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ const config = require('@/config').value;
|
|||
|
||||
module.exports = async (ctx) => {
|
||||
if (!config.youtube || !config.youtube.key) {
|
||||
throw 'Youtube RSS is disabled due to the lack of <a href="https://docs.rsshub.app/install/#%E9%83%A8%E5%88%86-rss-%E6%A8%A1%E5%9D%97%E9%85%8D%E7%BD%AE">relevant config</a>';
|
||||
throw 'YouTube RSS is disabled due to the lack of <a href="https://docs.rsshub.app/install/#%E9%83%A8%E5%88%86-rss-%E6%A8%A1%E5%9D%97%E9%85%8D%E7%BD%AE">relevant config</a>';
|
||||
}
|
||||
const username = ctx.params.username;
|
||||
const embed = !ctx.params.embed;
|
||||
|
|
@ -13,9 +13,9 @@ module.exports = async (ctx) => {
|
|||
const data = (await utils.getPlaylistItems(playlistId, 'snippet,contentDetails')).data.items;
|
||||
|
||||
ctx.state.data = {
|
||||
title: `${username} 的 Youtube 视频`,
|
||||
title: `${username} 的 YouTube 视频`,
|
||||
link: `https://www.youtube.com/user/${username}`,
|
||||
description: `${username} 的 Youtube 视频`,
|
||||
description: `${username} 的 YouTube 视频`,
|
||||
item: data
|
||||
.filter((d) => d.snippet.title !== 'Private video' && d.snippet.title !== 'Deleted video')
|
||||
.map((item) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue