fix(n8n-webhook): deploy and verify expanded action bus

This commit is contained in:
zap
2026-03-12 17:33:26 +00:00
parent 9dcc477a98
commit dc990a1af3
7 changed files with 40 additions and 9 deletions

View File

@@ -232,7 +232,8 @@ Request:
"args": {
"url": "https://example.com/article",
"max_chars": 8000,
"timeout_ms": 10000
"timeout_ms": 10000,
"skip_ssl_certificate_validation": false
}
}
```
@@ -241,6 +242,11 @@ Purpose:
- fetch a URL inside n8n
- normalize content into a predictable summary-ready shape
Notes:
- `skip_ssl_certificate_validation` is optional and defaults to `false`
- set it to `true` only when you explicitly need to work around broken/missing CA trust in the n8n runtime
- for a stable local smoke test, prefer an HTTP URL you control such as the local n8n `/healthz` endpoint
Success shape includes:
- `url`
- `title`