WebChat
网页聊天功能。
功能
- 实时消息
- 文件分享
- 表情选择
- 主题切换
配置
json
{
"webchat": {
"enabled": true,
"port": 3000,
"theme": "light",
"notifications": true
}
}嵌入到网站
html
<!-- 嵌入 OpenClaw WebChat -->
<div id="openclaw-chat"></div>
<script src="https://openclaw.example.com/chat.js"></script>
<script>
OpenClawChat.init({
container: '#openclaw-chat',
apiUrl: 'https://openclaw.example.com'
})
</script>事件
| 事件 | 描述 |
|---|---|
message | 收到消息 |
typing | 对方正在输入 |
connected | 已连接 |
disconnected | 已断开 |