mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-12 16:56:02 +00:00
Cloud/NAT deployments couldn't complete WeCom-family / Official Account / QQ Official setup because the trusted-IP (IP whitelist) value — the server's egress IPs — was nowhere visible in LangBot. - config.yaml: new system.outbound_ips list (env: SYSTEM__OUTBOUND_IPS, comma-separated), exposed via GET /api/v1/system/info - dynamic form: generic __system.*-named display-only fields resolved from systemContext (same namespace as show_if), one read-only row per value with a copy button, excluded from form state and emitted values; hidden entirely when the deployment provides no IPs - manifests: trusted-IP display field for wecom, wecomcs, wecombot, officialaccount, qqofficial Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
109 lines
3.7 KiB
YAML
109 lines
3.7 KiB
YAML
apiVersion: v1
|
||
kind: MessagePlatformAdapter
|
||
metadata:
|
||
name: officialaccount
|
||
label:
|
||
en_US: Official Account
|
||
zh_Hans: 微信公众号
|
||
zh_Hant: 微信公眾號
|
||
description:
|
||
en_US: Official Account Adapter
|
||
zh_Hans: 微信公众号适配器,需要公网地址以接收消息推送,请查看文档了解使用方式
|
||
zh_Hant: 微信公眾號適配器,需要公網地址以接收訊息推送,請查看文件了解使用方式
|
||
icon: officialaccount.png
|
||
spec:
|
||
categories:
|
||
- china
|
||
help_links:
|
||
zh: https://link.langbot.app/zh/platforms/officialaccount
|
||
en: https://link.langbot.app/en/platforms/officialaccount
|
||
ja: https://link.langbot.app/ja/platforms/officialaccount
|
||
config:
|
||
- name: webhook_url
|
||
label:
|
||
en_US: Webhook Callback URL
|
||
zh_Hans: Webhook 回调地址
|
||
zh_Hant: Webhook 回調地址
|
||
description:
|
||
en_US: Copy this URL and paste it into your Official Account webhook configuration
|
||
zh_Hans: 复制此地址并粘贴到微信公众号的 Webhook 配置中
|
||
zh_Hant: 複製此地址並貼到微信公眾號的 Webhook 設定中
|
||
type: webhook-url
|
||
required: false
|
||
default: ""
|
||
- name: __system.outbound_ips
|
||
label:
|
||
en_US: IP Whitelist
|
||
zh_Hans: IP 白名单
|
||
zh_Hant: IP 白名單
|
||
description:
|
||
en_US: Add these outbound IPs of the LangBot server to the IP whitelist in the "Basic Configuration" of the WeChat Official Account platform
|
||
zh_Hans: 请将这些 LangBot 服务器的出网 IP 添加到微信公众平台「基本配置」中的 IP 白名单
|
||
zh_Hant: 請將這些 LangBot 伺服器的出網 IP 加入微信公眾平台「基本配置」中的 IP 白名單
|
||
type: array[string]
|
||
required: false
|
||
default: []
|
||
- name: token
|
||
label:
|
||
en_US: Token
|
||
zh_Hans: 令牌
|
||
zh_Hant: 令牌
|
||
required: true
|
||
default: ""
|
||
- name: EncodingAESKey
|
||
label:
|
||
en_US: EncodingAESKey
|
||
zh_Hans: 消息加解密密钥
|
||
zh_Hant: 訊息加解密密鑰
|
||
type: string
|
||
required: true
|
||
default: ""
|
||
- name: AppID
|
||
label:
|
||
en_US: App ID
|
||
zh_Hans: 应用ID
|
||
zh_Hant: 應用ID
|
||
type: string
|
||
required: true
|
||
default: ""
|
||
- name: AppSecret
|
||
label:
|
||
en_US: App Secret
|
||
zh_Hans: 应用密钥
|
||
zh_Hant: 應用密鑰
|
||
type: string
|
||
required: true
|
||
default: ""
|
||
- name: Mode
|
||
label:
|
||
en_US: Mode
|
||
zh_Hans: 接入模式
|
||
zh_Hant: 接入模式
|
||
type: string
|
||
required: true
|
||
default: "drop"
|
||
- name: LoadingMessage
|
||
label:
|
||
en_US: Loading Message
|
||
zh_Hans: 加载消息
|
||
zh_Hant: 載入訊息
|
||
type: string
|
||
required: true
|
||
default: "AI正在思考中,请发送任意内容获取回复。"
|
||
- name: api_base_url
|
||
label:
|
||
en_US: API Base URL
|
||
zh_Hans: API 基础 URL
|
||
zh_Hant: API 基礎 URL
|
||
description:
|
||
en_US: API Base URL, used for accessing the Official Account API. If you are deploying in an internal network environment and accessing the Official Account API through a reverse proxy, please fill in this item according to the documentation.
|
||
zh_Hans: 可选,若您部署在内网环境并通过反向代理访问微信公众号 API,可根据文档修改此项
|
||
zh_Hant: 可選,若您部署在內網環境並透過反向代理存取微信公眾號 API,可根據文件修改此項
|
||
type: string
|
||
required: false
|
||
default: "https://api.weixin.qq.com"
|
||
execution:
|
||
python:
|
||
path: ./officialaccount.py
|
||
attr: OfficialAccountAdapter
|