mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-17 03:04:20 +00:00
8050ea1ffb
* feat:line adapter and config * fix:After receiving the message, decode it and handle it as "message_chain" * feat:add line-bot-sdk * del print * feat: add image to base64 * fix: download image to base64 * del Convert binary data to a base64 string * del print * perf: i18n specs for zh_Hant and ja_JP * fix:line adapter Plugin system --------- Co-authored-by: Junyan Qin <rockchinq@gmail.com>
54 lines
1.6 KiB
YAML
54 lines
1.6 KiB
YAML
apiVersion: v1
|
|
kind: MessagePlatformAdapter
|
|
metadata:
|
|
name: LINE
|
|
label:
|
|
en_US: LINE
|
|
zh_Hans: LINE
|
|
description:
|
|
en_US: LINE Adapter
|
|
zh_Hans: LINE适配器,请查看文档了解使用方式
|
|
ja_JP: LINEアダプター、ドキュメントを参照してください
|
|
zh_Hant: LINE適配器,請查看文檔了解使用方式
|
|
icon: line.png
|
|
spec:
|
|
config:
|
|
- name: channel_access_token
|
|
label:
|
|
en_US: Channel access token
|
|
zh_Hans: 频道访问令牌
|
|
ja_JP: チャンネルアクセストークン
|
|
zh_Hant: 頻道訪問令牌
|
|
type: string
|
|
required: true
|
|
default: ""
|
|
- name: port
|
|
label:
|
|
en_US: Webhook Port
|
|
zh_Hans: Webhook端口
|
|
description:
|
|
en_US: Only valid when webhook mode is enabled, please fill in the webhook port
|
|
zh_Hans: 请填写 Webhook 端口
|
|
ja_JP: Webhookポートを入力してください
|
|
zh_Hant: 請填寫 Webhook 端口
|
|
type: integer
|
|
required: true
|
|
default: 2287
|
|
- name: channel_secret
|
|
label:
|
|
en_US: Channel secret
|
|
zh_Hans: 消息密钥
|
|
ja_JP: チャンネルシークレット
|
|
zh_Hant: 消息密钥
|
|
description:
|
|
en_US: Only valid when webhook mode is enabled, please fill in the encrypt key
|
|
zh_Hans: 请填写加密密钥
|
|
ja_JP: Webhookモードが有効な場合にのみ、暗号化キーを入力してください
|
|
zh_Hant: 請填寫加密密钥
|
|
type: string
|
|
required: true
|
|
default: ""
|
|
execution:
|
|
python:
|
|
path: ./line.py
|
|
attr: LINEAdapter |