Files
RSSHub/lib/v2/threads/radar.js
ninboy 4e41f3e67d feat(route): Add Meta's Threads (#12762)
* 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

---------
2023-07-09 01:45:49 +08:00

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