🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

RSS + Telegram: approved LinkedIn posts, done for you

Lisa Granqvist Partner Workflow Automation Expert

Your RSS feed never stops. But your LinkedIn calendar does. So the “we should post this” links pile up, drafts get rushed, and the good stuff quietly expires.

Marketing managers feel it first. Content leads deal with it next. And if you run a small business, you end up doing it at 9pm. This RSS Telegram approval automation turns new articles into LinkedIn-ready drafts you can approve in a Telegram chat.

You’ll see how the workflow watches an RSS feed, uses AI to write platform-specific posts, stores everything in a lightweight content database, then waits for a simple “Approve/Decline” before anything goes live.

How This Automation Works

Here’s the complete workflow you’ll be setting up:

n8n Workflow Template: RSS + Telegram: approved LinkedIn posts, done for you

Why This Matters: RSS content dies in the draft folder

Most teams don’t struggle to find content. They struggle to ship it. Someone drops an article link into Slack, another person says “great,” and then it sits because nobody has time to summarize it, write a post, find an image, and double-check the wording. Do that a few times a week and you get the worst combo: you’re “active” in theory, but inconsistent in reality. Even when you do publish, it’s often off-brand because the draft was written in a hurry and nobody had a clean approval moment.

It adds up fast. Here’s where it breaks down.

  • Copying links, skimming the article, and writing a decent LinkedIn draft can easily take about 30 minutes each time.
  • Without a single approval checkpoint, posts either don’t go out or they go out with avoidable mistakes.
  • Teams lose track of what’s pending versus posted, so the same story gets re-shared or ignored.
  • Images become the bottleneck, because “just grab one” usually means resizing, cropping, and hunting for something usable.

What You’ll Build: RSS-to-draft posts with Telegram approval

This workflow watches an RSS feed on a schedule (every 20 minutes) and reacts when a new article appears. It pulls the article link, then has OpenAI summarize the content so you’re not relying on headlines alone. From that summary, the workflow generates two important things: a post draft tailored to each platform (including LinkedIn), and an image prompt that can produce a relevant visual. Everything gets saved into NocoDB as a “Pending” record so you have a simple backlog you can review later. Then it sends a preview into Telegram with inline buttons for approval. When you tap ✅ Approve, it publishes to LinkedIn and Facebook, and it can optionally post to X depending on your Telegram reply.

The workflow starts with RSS discovery, then moves through AI summarization and post creation. After that, it becomes a human-friendly approval system in Telegram, which means you keep control without doing the repetitive work. Finally, publishing happens only when you say yes.

What You’re Building

Expected Results

Say you publish 5 RSS-based updates a week. Manually, a quick skim + summary + LinkedIn draft + image hunt is usually about 45 minutes per post, so you’re looking at roughly 4 hours weekly. With this workflow, you’ll spend a couple minutes approving (or declining) each draft in Telegram, then it posts for you. Even if you still tweak wording inside NocoDB sometimes, most teams get several hours back every week and stop missing timely stories.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • OpenAI for summaries, drafts, and image generation
  • Telegram to approve or decline drafts
  • NocoDB API token (get it from your NocoDB user settings)

Skill level: Intermediate. You’ll connect a few APIs, map fields into NocoDB, and test an approval loop in Telegram.

Want someone to build this for you? Talk to an automation expert (free 15-minute consultation).

Step by Step

A new RSS item appears. The workflow checks your chosen feed on a 20-minute timer and triggers when it finds a fresh article.

The article gets turned into usable inputs. n8n extracts the URL, pulls the content (via HTTP request and transform logic), then sends it to OpenAI to summarize so you’re working from meaning, not just the headline.

Drafts and visuals are created automatically. OpenAI generates an image prompt and a platform-ready post (including a LinkedIn version), and the workflow stores the summary, post content, image URL, and status in NocoDB.

Telegram becomes the approval gate. You receive a preview message with ✅ Approve or ❌ Decline. Approve triggers posting to LinkedIn and Facebook, plus an optional X decision. Decline simply marks the record so it doesn’t come back to haunt you later.

You can easily modify the RSS sources to cover multiple feeds, or change the approval rules so only LinkedIn is auto-published. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the RSS Trigger

Set up the RSS trigger that starts the workflow when a new feed item appears.

  1. Add the RSS Feed Trigger node and connect your RSS feed URL in its settings.
  2. Keep the remaining settings at their defaults unless your feed requires a specific polling interval.
  3. Optionally keep Flowpast Branding as a documentation note for your workflow canvas.

Step 2: Normalize and Extract the Article Link

Prepare the incoming RSS data and fetch the target link content for downstream summarization.

  1. Connect RSS Feed Trigger to Transform Logic to reshape the feed item payloads as needed.
  2. Connect Transform Logic to Extract Link Separately to retrieve the article content from the link.
  3. Connect Extract Link Separately to Summarize Article to pass the cleaned content into the AI pipeline.

Step 3: Set Up the AI Content Pipeline

Use the OpenAI nodes to summarize the article, create visual prompts, generate imagery, and draft social copy.

  1. In Summarize Article, configure your summarization prompt and model settings.
  2. Connect Summarize Article to Draft Image Prompt, then to Generate Visual to prepare and generate an image concept.
  3. Connect Generate Visual to Compose Facebook Update to draft the Facebook copy.
  4. Keep Compose LinkedIn Update connected downstream from approval (Step 4), as it is triggered after approval.

Credential Required: Connect your OpenAI credentials to all OpenAI nodes (Summarize Article, Draft Image Prompt, Generate Visual, Compose Facebook Update, Compose LinkedIn Update).

Step 4: Configure Review, Approval, and Database Updates

Store the drafted content, request approval via Telegram, and route the decision logic.

  1. Connect Compose Facebook Update to Update NocoDB Records to save the draft in your database.
  2. Connect Update NocoDB Records to Dispatch Telegram Note to notify reviewers.
  3. Connect Dispatch Telegram Note to Await Telegram Reply, and then to Branch Decision to wait for approval.
  4. Set Branch Decision to route approvals to Set Record Approved and rejections to Set Record Rejected.

Credential Required: Connect your NocoDB credentials to Update NocoDB Records, Set Record Approved, and Set Record Rejected.

Credential Required: Connect your Telegram credentials to Dispatch Telegram Note and Telegram for Twitter.

Step 5: Configure Parallel Social Publishing and X Routing

After approval, publish to Facebook and LinkedIn while routing the X (Twitter) post based on reviewer input.

  1. Note the parallel execution: Set Record Approved outputs to both Telegram for Twitter and Publish Facebook API and Compose LinkedIn Update in parallel.
  2. Connect Telegram for Twitter to Delay Step One, then to Check X Choice to allow a short review delay and route the X choice.
  3. Configure Check X Choice to send to Post to X Primary on the true path and Post to X Alternate on the false path.
  4. Connect Compose LinkedIn Update to Extract Image URL, then to Publish LinkedIn Post to include the generated image.

Credential Required: Connect your Facebook Graph API credentials to Publish Facebook API.

Credential Required: Connect your Twitter credentials to Post to X Primary and Post to X Alternate.

Credential Required: Connect your LinkedIn credentials to Publish LinkedIn Post.

⚠️ Common Pitfall: If X or LinkedIn posts fail, confirm the approval flow reached the correct branch and that media URLs are accessible to the target platform.

Step 6: Test and Activate Your Workflow

Run a full test to validate the RSS input, AI drafting, approval routing, and multi-channel publishing.

  1. Click Execute Workflow and provide a sample RSS item to simulate a new post.
  2. Confirm the AI steps create summaries, prompts, and social copy, and that records are created in NocoDB.
  3. Approve the item via Telegram and verify that Facebook, LinkedIn, and X posts publish correctly.
  4. When satisfied, toggle the workflow Active to run automatically on new RSS items.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • LinkedIn credentials can expire or need specific permissions. If things break, check your LinkedIn developer app access token and the company/page posting rights first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Quick Answers

What’s the setup time for this RSS Telegram approval automation?

Plan for about an hour if you already have all API keys ready.

Is coding required for this Telegram-approved LinkedIn posting?

No coding required. You’ll mostly connect accounts and match fields going into NocoDB and Telegram.

Is n8n free to use for this RSS Telegram approval workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in OpenAI API costs (often a few dollars a month at small volumes) plus any costs from your social platform apps if applicable.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I modify this RSS Telegram approval workflow for different use cases?

Yes, and you should. You can swap the RSS feed URL in the RSS trigger, change the OpenAI prompt used in the “Compose LinkedIn Update” and “Compose Facebook Update” steps, and adjust the If/approval logic so only certain categories get posted. Common tweaks include adding Instagram or Threads, changing the Telegram message format, and routing “Declined” items to a review channel instead of closing them out.

Why is my Telegram connection failing in this workflow?

Usually it’s the bot not being added to the right chat, or the Chat ID being wrong. Double-check the bot is a member of the group/channel, then confirm the Chat ID you saved in n8n matches that exact destination. If inline buttons don’t work, look for blocked permissions in Telegram or an expired bot token and refresh it.

What volume can this RSS Telegram approval workflow process?

A typical setup can handle dozens of new RSS items per day, but your real limit is approvals and API rate limits.

Is this RSS Telegram approval automation better than using Zapier or Make?

Often, yes, because this workflow isn’t just “RSS in, LinkedIn out.” You have multiple AI steps, a database (NocoDB) record lifecycle, an approval loop with waiting, and conditional posting to X. n8n handles branching and wait states cleanly, and self-hosting means you’re not paying per tiny step the same way you might elsewhere. Zapier or Make can still work if you simplify the flow, skip the approval stage, or only post to one platform. If you’re unsure, Talk to an automation expert and map it to your posting volume.

Once this is running, your RSS feed stops being “reading material” and starts becoming approved, on-brand posts. The workflow handles the repeatable parts. You just tap approve and move on.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal