Files
RSSHub/lib/v2/twitter/trends.js
Rongrong df5d3fc918 fix(route)(twitter): quote ignored in web API (#10361)
* fix(route)(twitter): quote ignored in web API

* refactor: migrate to v2

Signed-off-by: Rongrong <i@rong.moe>
2022-08-01 20:25:32 +08:00

25 lines
1.0 KiB
JavaScript

const utils = require('./utils');
const config = require('@/config').value;
module.exports = async (ctx) => {
if (!config.twitter || !config.twitter.consumer_key || !config.twitter.consumer_secret) {
throw 'Twitter RSS is disabled due to the lack of <a href="https://docs.rsshub.app/install/#pei-zhi-bu-fen-rss-mo-kuai-pei-zhi">relevant config</a>';
}
const woeid = ctx.params.woeid ?? 1; // Global information is available by using 1 as the WOEID
const client = await utils.getAppClient();
const data = await client.v1.get('trends/place.json', { id: woeid });
const [{ trends }] = data;
ctx.state.data = {
title: `Twitter Trends on ${data[0].locations[0].name}`,
link: `https://twitter.com/i/trends`,
item: trends
.filter((t) => !t.promoted_content)
.map((t) => ({
title: t.name,
link: t.url,
description: t.name + (t.tweet_volume ? ` (${t.tweet_volume})` : ''),
})),
};
};