fix(triggers): clarify Notion webhook signing secret vs verification_token

Update placeholder and description to distinguish the signing secret
(used for HMAC-SHA256 signature verification) from the verification_token
(one-time challenge echoed during initial setup).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Waleed Latif
2026-04-06 11:31:07 -07:00
parent a4eef8b1be
commit 0a77dadd9f

View File

@@ -48,9 +48,9 @@ export function buildNotionExtraFields(triggerId: string): SubBlockConfig[] {
id: 'webhookSecret',
title: 'Webhook Secret',
type: 'short-input',
placeholder: 'Enter your verification_token for signature verification',
placeholder: 'Enter your Notion webhook signing secret',
description:
'The verification_token from Notion, used to validate X-Notion-Signature headers on incoming webhooks.',
'The signing secret from your Notion integration settings page, used to verify X-Notion-Signature headers. This is separate from the verification_token used during initial setup.',
password: true,
required: false,
mode: 'trigger',