mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-10 15:21:59 +08:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
module.exports = {
|
|
'toutiao.com': {
|
|
_name: '今日头条',
|
|
so: [
|
|
{
|
|
title: '热搜关键词聚合追踪',
|
|
docs: 'https://docs.rsshub.app/social-media.html#re-sou-ju-he',
|
|
source: ['/search'],
|
|
target: (params, url) => `/trending/${new URL(url).searchParams.get('keyword')}`,
|
|
},
|
|
],
|
|
},
|
|
'weibo.com': {
|
|
_name: '微博',
|
|
s: [
|
|
{
|
|
title: '热搜关键词聚合追踪',
|
|
docs: 'https://docs.rsshub.app/social-media.html#re-sou-ju-he',
|
|
source: '/weibo/:keyword',
|
|
target: (params) => `/trending/${params.keyword}}`,
|
|
},
|
|
],
|
|
},
|
|
'zhihu.com': {
|
|
_name: '知乎',
|
|
www: [
|
|
{
|
|
title: '热搜关键词聚合追踪',
|
|
docs: 'https://docs.rsshub.app/social-media.html#re-sou-ju-he',
|
|
source: ['/search'],
|
|
target: (params, url) => `/trending/${new URL(url).searchParams.get('q')}`,
|
|
},
|
|
],
|
|
},
|
|
};
|