Skip to content

Actions

DIYgod edited this page Apr 28, 2025 · 11 revisions

Supported Features

  • Generate summary using Al: Display AI summary at the top of the entry.
  • Translate: Translate the title, description, and body into the translation language you set in general.
  • Enable readability: Automatically enable the readability feature to access the full content.
  • View source content: Automatically open the source site.
  • Notification of new entry: Send notifications to your desktop, mobile, or web devices when there are new entry.
  • Silence: Automatically marked new content as read to reduce distractions for you.
  • Block: Block new content from appearing on your timeline.
  • Rewrite rules: Replace specific strings in the title, description, and body.
  • Webhooks: Trigger your webhooks api.

Common Use Cases

Exclude specific content from my timeline

Here's an example: exclude twitter content that starts with "RT," indicating forwarded content, so it doesn't appear in my timeline.

Notify me when new content is available

Here's an example: send me a notification when there are updates in the Notifications view or the feed with the title containing News.

Webhooks

Request Parameters

Method: POST

Header: Content-Type: application/json

Body:

type WebhookPayload = {
  entry: {
    id: string;
    publishedAt: Date;
    insertedAt: Date;
    feedId: string;
    title: string | null;
    description: string | null;
    content: string | null;
    author: string | null;
    url: string | null;
    guid: string;
    media: {
      url: string
      type: "photo" | "video"
      preview_image_url?: string
      width?: number
      height?: number
      blurhash?: string
    }[] | null;
  }
  feed: {
    url: string;
    siteUrl: string;
    lastModifiedHeader: string | null;
    etagHeader: string | null;
    errorMessage: null;
    errorAt: null;
    id?: string
    image?: string | null
    description?: string | null
    title?: string | null
    checkedAt: Date;
    ttl?: number | null
    ownerUserId?: string | null
    language?: string | null
  }
  view: number
}

Examples

Forward the feed updates through n8n to Telegram

  1. Set up the workflow using Webhook and Telegram nodes in n8n
image

  1. Enter the Webhook address generated by n8n into Folo

  1. Check forwarding in Telegram

Forward the starred entries through n8n to Telegram

Folo Actions as shown in the figure below.

Clone this wiki locally