| 12345678910111213141516171819202122 |
- import { type Handler } from "aws-lambda";
- import config from "../../config";
- import Portal from "../portal";
- import ScraperMethods from "../../enums/scraper-methods";
- import Emojis from "../../enums/emojis";
- const name = `Fast Check ${Emojis.MAGNIFYING_GLASS}`;
- export const handler: Handler = new Portal(
- name,
- config.MASTODON_KEY_FASTCHECK,
- {
- url: config.FASTCHECK,
- articlesSelector: "div.elementor-element-9da95a3 article",
- titleSelector: "h1.elementor-post__title, h3.elementor-post__title",
- linkSelector: "header h1 a",
- scraperMethod: ScraperMethods.AXIOS,
- hashtags: ["FastCheck", "Artículo", "Noticias"],
- cacheExpiration: 60 * 60 * 24 * 30, // 30 días
- }
- ).getHandler();
|