mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 09:38:04 +08:00
55 lines
1.8 KiB
JavaScript
55 lines
1.8 KiB
JavaScript
module.exports = {
|
|
'okjike.com': {
|
|
_name: '即刻',
|
|
m: [
|
|
{
|
|
title: '用户动态',
|
|
docs: 'https://docs.rsshub.app/social-media.html#ji-ke',
|
|
source: '/users/:uid',
|
|
target: '/jike/user/:uid',
|
|
},
|
|
{
|
|
title: '用户动态',
|
|
docs: 'https://docs.rsshub.app/social-media.html#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/social-media.html#ji-ke',
|
|
source: '/topics/:id',
|
|
target: '/jike/topic/:id',
|
|
},
|
|
{
|
|
title: '圈子 - 纯文字',
|
|
docs: 'https://docs.rsshub.app/social-media.html#ji-ke',
|
|
source: '/topics/:id',
|
|
target: '/jike/topic/text/:id',
|
|
},
|
|
],
|
|
web: [
|
|
{
|
|
title: "用户动态",
|
|
docs:"https://docs.rsshub.app/social-media.html#ji-ke",
|
|
source:"/u/:uid",
|
|
target:"/jike/user/:uid"
|
|
},
|
|
{
|
|
title:"圈子",
|
|
docs:"https://docs.rsshub.app/social-media.html#ji-ke",
|
|
source:"/topic/:id",
|
|
target:"/jike/topic/:id"
|
|
},
|
|
{
|
|
title:"圈子 - 纯文字",
|
|
docs:"https://docs.rsshub.app/social-media.html#ji-ke",
|
|
source:"/topic/:id",
|
|
target:"/jike/topic/text/:id"
|
|
}
|
|
]
|
|
},
|
|
};
|