mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-09 06:30:40 +08:00
* feat(route) Add Meta's Threads * Fixing deepscan issues * Additional linting issues * single quotes when possible * woops * Addressing PR comments * Rename radar title * Update lib/v2/threads/radar.js * Update lib/v2/threads/radar.js * docs: add pptr flag ---------
14 lines
361 B
JavaScript
14 lines
361 B
JavaScript
module.exports = {
|
|
'threads.net': {
|
|
_name: 'Threads',
|
|
'.': [
|
|
{
|
|
title: 'User timeline',
|
|
docs: 'https://docs.rsshub.app/en/social-media.html#threads',
|
|
source: ['/:user'],
|
|
target: (params) => `/threads/${params.user.substring(1)}`,
|
|
},
|
|
],
|
|
},
|
|
};
|