From 530607203ad631995de7147a3afe23f257919be3 Mon Sep 17 00:00:00 2001 From: Kenichiro NOGI Date: Sat, 5 Sep 2026 18:35:44 +0900 Subject: [PATCH] =?UTF-8?q?=E8=A8=88=E7=94=BB=E6=9B=B8=E3=82=B5=E3=83=B3?= =?UTF-8?q?=E3=83=97=E3=83=AB=E3=82=B3=E3=83=BC=E3=83=89=E3=81=AE$input.fi?= =?UTF-8?q?rst()=E3=83=90=E3=82=B0=E3=82=92=E4=BF=AE=E6=AD=A3(Task11?= =?UTF-8?q?=E5=86=8D=E6=A7=8B=E7=AF=89=E3=81=A7=E7=99=BA=E8=A6=8B)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 署名検証Codeノードの直前がWebhookでなくData Table(設定値一括取得) になったため、裸のinput.first()だとconfig行を拾ってしまい常に 署名検証失敗になるバグだった。$('Webhook').first()に修正。 Co-Authored-By: Claude Sonnet 5 --- .../plans/2026-09-05-healthcheck-lineworks-survey-n8n.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeSrv/docs/superpowers/plans/2026-09-05-healthcheck-lineworks-survey-n8n.md b/NodeSrv/docs/superpowers/plans/2026-09-05-healthcheck-lineworks-survey-n8n.md index c664585f..fdae829e 100644 --- a/NodeSrv/docs/superpowers/plans/2026-09-05-healthcheck-lineworks-survey-n8n.md +++ b/NodeSrv/docs/superpowers/plans/2026-09-05-healthcheck-lineworks-survey-n8n.md @@ -1126,7 +1126,7 @@ function verifySignature(rawBody, headerSignature, botSecret) { const configRows = $('設定値一括取得').all().map((item) => item.json); const config = Object.fromEntries(configRows.map((row) => [row.configKey, row.configValue])); -const item = $input.first(); +const item = $('Webhook').first(); // この直前ノードは「設定値一括取得」(Data Table)のため、裸の$input.first()だとconfig行を拾ってしまいheaders/bodyが無い const headers = item.json.headers || {}; const rawBody = item.binary && item.binary.data ? Buffer.from(item.binary.data.data, "base64")