-
-
Notifications
You must be signed in to change notification settings - Fork 486
Notify_lark
Chris Caron edited this page Jul 7, 2025
·
2 revisions
- Source: https://open.larksuite.com/
- Icon Support: No
- Message Format: Plain Text
- Message Limit: ~20,000 Characters
Lark (also known as Feishu in China) allows you to create custom bots that can send notifications to groups and chats using incoming webhooks.
To use Lark with Apprise, you must first create a bot in your Lark workspace and enable webhooks for it.
- Visit the Lark Developer Console and create or access your app.
- Under Features, enable Bot and turn on the Custom Bot feature.
- From the app's Bot settings, generate a Webhook URL.
- Copy the webhook — it will look like this:
https://open.larksuite.com/open-apis/bot/v2/hook/abcdef1234567890abcdef1234567890
This webhook contains a single unique token at the end. This is all Apprise needs to deliver messages.
While you can use the full webhook URL directly, Apprise also supports a simplified form using the lark://
schema.
Valid syntax is as follows:
https://open.larksuite.com/open-apis/bot/v2/hook/{token}
lark://{token}
Variable | Required | Description |
---|---|---|
token | Yes | The 32-character integration key at the end of your webhook URL. |
# Assuming our token is abcdef1234567890abcdef1234567890
apprise -vv -t "Lark Title" -b "Body of message" \
lark://abcdef1234567890abcdef1234567890
apprise -vv -t "Lark Title" -b "Body of message" \
https://open.larksuite.com/open-apis/bot/v2/hook/abcdef1234567890abcdef1234567890
Both formats are supported and functionally equivalent in Apprise.