Files
RSSHub/lib/v2/jike/radar.js
2023-07-13 08:48:19 +00:00

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"
}
]
},
};