mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 01:28:08 +08:00
55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
module.exports = {
|
|
'okjike.com': {
|
|
_name: '即刻',
|
|
m: [
|
|
{
|
|
title: '用户动态',
|
|
docs: 'https://docs.rsshub.app/routes/social-media#ji-ke',
|
|
source: '/users/:uid',
|
|
target: '/jike/user/:uid',
|
|
},
|
|
{
|
|
title: '用户动态',
|
|
docs: 'https://docs.rsshub.app/routes/social-media#ji-ke',
|
|
source: '/reposts/:repostId',
|
|
target: (params, url, document) => {
|
|
const uid = document.querySelector('.avatar').getAttribute('href').replace('/users/', '');
|
|
return uid ? `/jike/user/${uid}` : '';
|
|
},
|
|
},
|
|
{
|
|
title: '圈子',
|
|
docs: 'https://docs.rsshub.app/routes/social-media#ji-ke',
|
|
source: '/topics/:id',
|
|
target: '/jike/topic/:id',
|
|
},
|
|
{
|
|
title: '圈子 - 纯文字',
|
|
docs: 'https://docs.rsshub.app/routes/social-media#ji-ke',
|
|
source: '/topics/:id',
|
|
target: '/jike/topic/text/:id',
|
|
},
|
|
],
|
|
web: [
|
|
{
|
|
title: '用户动态',
|
|
docs: 'https://docs.rsshub.app/routes/social-media#ji-ke',
|
|
source: '/u/:uid',
|
|
target: '/jike/user/:uid',
|
|
},
|
|
{
|
|
title: '圈子',
|
|
docs: 'https://docs.rsshub.app/routes/social-media#ji-ke',
|
|
source: '/topic/:id',
|
|
target: '/jike/topic/:id',
|
|
},
|
|
{
|
|
title: '圈子 - 纯文字',
|
|
docs: 'https://docs.rsshub.app/routes/social-media#ji-ke',
|
|
source: '/topic/:id',
|
|
target: '/jike/topic/text/:id',
|
|
},
|
|
],
|
|
},
|
|
};
|