Skip to content

Commit

Permalink
line adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Aug 6, 2023
1 parent 949c64c commit b66b4e9
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .vitepress/config/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,10 @@
"text": "Lark",
"link": "/plugins/adapter/lark.md"
},
{
"text": "LINE",
"link": "/plugins/adapter/line.md"
},
{
"text": "Mail",
"link": "/plugins/adapter/mail.md"
Expand Down
12 changes: 12 additions & 0 deletions zh-CN/manual/console/adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ Koishi 使用适配器插件来支持各种聊天平台。其中,常用的适

参考:[@koishijs/plugin-adapter-lark](../../plugins/adapter/lark.md)

## LINE

1.[LINE 开发者控制台](https://developers.line.biz/console/) 注册账号,创建一个新的 Provider,在 Provider 中创建一个 Channel,类型选择 Messaging API,输入相关信息。
2. 在 Basic settings 页面找到 Channel secret,填入插件的 secret 字段。
3. 在 Messaging API 页面底部 Channel access token 处点击 Issue 创建 token,填入插件的 token 字段。
4. 根据使用需求可在上方的 Allow bot to join group chats (允许机器人加入群组) 处点击 Edit,在新页面中找到 Toggle features 一栏,第一对单选框选择 Allow。
5. 在 Messaging API 页面底部,根据使用需求点击 Auto-reply messages 或者 Greeting messages 的修改按钮,在新页面中可设置是否启用平台自带的自动回复或问候消息。
6. 在 Security 页面推荐配置白名单 IP
7. 启动插件,打开 Messaging API 页面,勾选 Use webhook

参考:[@koishijs/plugin-adapter-line](../../plugins/adapter/line.md)

## 邮件

1. 「username」对应你的邮箱账号,「password」对应你的授权码
Expand Down
27 changes: 27 additions & 0 deletions zh-CN/plugins/adapter/line.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# @koishijs/plugin-adapter-line

## 接入方法

1.[LINE 开发者控制台](https://developers.line.biz/console/) 注册账号,创建一个新的 Provider,在 Provider 中创建一个 Channel,类型选择 Messaging API,输入相关信息。
2. 在 Basic settings 页面找到 Channel secret,填入插件的 secret 字段。
3. 在 Messaging API 页面底部 Channel access token 处点击 Issue 创建 token,填入插件的 token 字段。
4. 根据使用需求可在上方的 Allow bot to join group chats (允许机器人加入群组) 处点击 Edit,在新页面中找到 Toggle features 一栏,第一对单选框选择 Allow。
5. 在 Messaging API 页面底部,根据使用需求点击 Auto-reply messages 或者 Greeting messages 的修改按钮,在新页面中可设置是否启用平台自带的自动回复或问候消息。
6. 在 Security 页面推荐配置白名单 IP
7. 启动插件,打开 Messaging API 页面,勾选 Use webhook

参考文档:<https://developers.line.biz/en/docs/messaging-api/getting-started/>

## 配置项

### options.token

- 类型:`string`

机器人令牌。

### options.secret

- 类型:`string`

机器人密钥。

0 comments on commit b66b4e9

Please sign in to comment.