Download Latest Version v3.19.1 Add an Option to Skip Webhook Signature Verification source code.tar.gz (24.4 MB)
Email in envelope

Get an email when there's a new version of LINE Messaging API SDK for Python

Home / v3.19.1
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2025-09-18 3.1 kB
v3.19.1 Add an Option to Skip Webhook Signature Verification source code.tar.gz 2025-09-18 24.4 MB
v3.19.1 Add an Option to Skip Webhook Signature Verification source code.zip 2025-09-18 25.0 MB
Totals: 3 Items   49.3 MB 0

What's Changed

✨ Add an Option to Skip Webhook Signature Verification

With this release, developers can now optionally skip signature verification when parsing incoming webhook requests. This new capability is especially useful in scenarios where the channel secret may change, potentially causing temporary signature mismatches.

Example Usage:

:::python
parser = linebot.v3.WebhookParser(
    'YOUR_CHANNEL_SECRET',
    skip_signature_verification=lambda: True # Skip verification
)

When signature verification is skipped, the signatureValidator will not be invoked. This allows webhook requests to be processed even if their signatures do not match the current channel secret used for verification.

This feature is particularly helpful in high-availability systems where avoiding downtime or message loss during configuration updates is critical.

Dependency updates

Other Changes

Full Changelog: https://github.com/line/line-bot-sdk-python/compare/v3.19.0...v3.19.1

Source: README.md, updated 2025-09-18