From 7bc04fac5f9eb0e1768fbb0bb7d780b5281b7934 Mon Sep 17 00:00:00 2001 From: David Hu Date: Sat, 22 Aug 2026 21:28:32 -0700 Subject: [PATCH] fix: clarify third-party webhook tunnel setup --- integration/webhook/create-webhook.mdx | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/integration/webhook/create-webhook.mdx b/integration/webhook/create-webhook.mdx index d4fb217..f941dea 100644 --- a/integration/webhook/create-webhook.mdx +++ b/integration/webhook/create-webhook.mdx @@ -191,18 +191,12 @@ except ImportError: Your webhook endpoint needs to be accessible from the internet. Choose one of these options: - + **Perfect for local development and testing** -**Install ngrok:** - -```bash -# macOS -brew install ngrok - -# Windows/Linux - download from https://ngrok.com/download -``` +Use a third-party tunneling service such as [ngrok](https://ngrok.com/docs/getting-started/) +to give your local webhook server a temporary public HTTPS URL. **Start your server:** @@ -219,13 +213,8 @@ node webhook_server.js -**Expose it publicly:** - -```bash -ngrok http 8000 -``` - -**Copy the HTTPS URL** (e.g., `https://abc123.ngrok.io`) +Follow your tunnel provider's setup instructions, then copy its HTTPS URL (for example, +`https://abc123.ngrok.io`).