惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
博客园 - 聂微东
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
博客园 - 司徒正美
爱范儿
爱范儿
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
博客园 - 【当耐特】
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
人人都是产品经理
人人都是产品经理
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Didn't Know What a Webhook Was. Then One Broke My Agent.
ShipStack · 2026-05-27 · via DEV Community

One day. Same problem. No error messages. Just silence.

My Telegram bot wasn't responding. I'd send it a command — "analyze AAPL" — and nothing came back. I'd check n8n. Everything looked fine. The workflow was active. The nodes were connected. Nothing was broken, as far as I could tell.

I didn't know what a webhook was. I barely knew what a bot was. This was my first project ever — Cerberus, an autonomous Solana trading agent built in n8n before I'd written a single line of code. And something invisible was eating every message I sent.

That problem taught me more about how the internet actually works than any tutorial I've watched since.

What a Webhook Actually Is

Before I explain what broke, here's the thing I didn't understand at the time.

A webhook is just a URL. That's it. It's an address that a service — in my case, Telegram — can send data to when something happens. When you message a bot, Telegram doesn't wait for the bot to ask "any new messages?" — it immediately pings a URL and says "here's the message."

If that URL is wrong, or dead, or pointing somewhere else entirely? Your bot receives nothing. No error. No warning. Just silence. The message went somewhere — just not where your bot was listening.

That silence is what makes webhook problems so hard to debug when you're starting out. The bot isn't broken. The code isn't broken. The address it's registered at is wrong.

The Setup That Kept Betraying Me

When I first built Cerberus, I started with a broken n8n template. The Merge node wasn't working right. The webhook kept failing. I fixed those. Got things running. Then the real problem started.

Every time n8n restarted, the Telegram bot stopped responding.

I'd spend an hour building something new. Go to test it. Silence. Check everything. Nothing obviously wrong. Eventually figure out the webhook URL had changed. Fix it manually. Bot works again. Restart n8n tomorrow. Silence again.

The specific issue: I was using loca.lt for tunneling — a tool that exposes your local machine to the internet so Telegram can reach it. I also had a Cloudflare tunnel set up, which was supposed to be the stable, permanent URL. But every time n8n started, loca.lt would register itself as the webhook URL with Telegram, overriding my Cloudflare address.

n8n generates its own tunnel URL on startup and registers it automatically. It was winning a race I didn't even know was happening.

Everything I Tried That Didn't Work

I want to be specific here, because if you're hitting this problem, you've probably already tried some of these.

N8N_TUNNEL=false environment variable — didn't stick. Added it to .zshrc — same result. I tried a 30-second re-registration delay, thinking my Cloudflare URL just needed more time. Still getting overridden. Bumped it to 60 seconds. Still losing the race.

I dug into n8n config files. Created a ~/.n8n/tunnel.json file trying to hardcode the URL. Nothing permanently fixed it. Every restart, loca.lt came back.

The frustrating part wasn't the problem itself. It was that the problem had nothing to do with what I was actually building. I was trying to learn how to connect a trading strategy to Telegram. Instead I was spending hours fighting infrastructure I didn't understand.

The Fix That Finally Held

Once I understood why it was happening, the solution became obvious.

n8n starts up, immediately registers its tunnel URL with Telegram. My Cloudflare URL, set up separately, never had a chance to override it because n8n was always faster.

The fix was a startup script. One that waited for n8n to finish its registration sequence — long enough that the loca.lt URL was already locked in — and then immediately hit the Telegram API to override it with my Cloudflare URL.

Not elegant. But it worked. And once it worked, it held.

The bot started responding again. And I realized I'd just spent one day learning something that no tutorial had ever explained to me directly: the infrastructure layer is invisible until it breaks, and when it breaks, it breaks silently.

What One Day of Silence Actually Taught Me

Before this problem, I thought of a Telegram bot as a thing. A bot. It lives somewhere, it responds to messages, you build it and it works.

After this, I understood it as a system. A message leaves your phone. Telegram's servers receive it. They look up the registered webhook URL for that bot. They send the message to that URL. Whatever is running at that URL processes it and sends a response back.

Every step is a potential point of failure. And most of those failures look identical from the outside: silence.

This is the thing nobody tells you when you're starting out. The hard problems aren't the AI parts. The hard problems are the plumbing — the part where data moves from one place to another and you have to understand exactly how that works before you can debug anything.

Webhooks are everywhere in modern automation. Every time an n8n workflow triggers on an external event, there's a webhook involved. Every Telegram bot. Every payment processor notification. Every GitHub action that responds to a push. They're the connective tissue of the internet's real-time layer — and they fail in complete silence when something goes wrong.

The Bigger Pattern I Didn't See Until Later

This wasn't the last time infrastructure beat me before I could get to the actual building.

OAuth breaking in production but working locally. Two Python environments causing silent failures — my code was running in .venv but the packages I'd installed were in .venv311. A single line filter in telegram_bot.py that was silently swallowing every command I sent, including /remember, and I couldn't figure out why the memory system wasn't saving anything.

Different problems. Same pattern: something invisible between you and the thing you're building. No error message. Just a result that makes no sense.

The skill I was actually developing wasn't coding. It was a mental model for how systems connect to each other. Once you have that model — once you can picture the path a message takes from your phone to your agent and back — you can reason about where it's breaking.

Without that model, you're just guessing.

What I'd Tell Someone Starting Now

If you're building your first bot or first agent and something stops working for no obvious reason, check the infrastructure before you check your code.

Specifically: if you're using a Telegram bot, verify the registered webhook URL. You can do this with a direct API call:

curl https://api.telegram.org/bot<YOUR_BOT_TOKEN>/getWebhookInfo

Enter fullscreen mode Exit fullscreen mode

That one command would have saved me most of that day. It shows you exactly what URL Telegram thinks your bot is registered at. If it's not your URL, that's your problem.

And if you're running n8n locally with a tunnel, know that n8n manages its own tunnel registration. It's not passive. It actively tells Telegram where to send messages on startup. If you have a separate stable URL you want to use, you need to override n8n's registration after it starts — not before.

The webhook isn't magic. It's just an address. Get the address right, and everything downstream works. Get it wrong, and you'll spend one day wondering why your perfectly good code does absolutely nothing.

That lesson cost me one day. Hopefully this costs you ten minutes.