diff --git a/.changelog/v0.9.0.md b/.changelog/v0.9.0.md
new file mode 100644
index 0000000..2529b95
--- /dev/null
+++ b/.changelog/v0.9.0.md
@@ -0,0 +1,7 @@
+> 对应核心版本: [**v4.0.1**](https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.1)
+
+
+我们欢迎并期望着您的的[反馈](https://github.com/simple-robot/simbot-component-onebot/issues)或[协助](https://github.com/simple-robot/simbot-component-onebot/pulls),
+感谢您的贡献与支持!
+
+也欢迎您为我们献上一颗 `star`,这是对我们最大的鼓励与认可!
diff --git a/Writerside/ob.tree b/Writerside/ob.tree
index dcf8e5e..6f06a06 100644
--- a/Writerside/ob.tree
+++ b/Writerside/ob.tree
@@ -13,11 +13,12 @@
-
-
+
+
+
diff --git a/Writerside/topics/OneBot11.md b/Writerside/topics/OneBot11.md
index a45df41..17d2376 100644
--- a/Writerside/topics/OneBot11.md
+++ b/Writerside/topics/OneBot11.md
@@ -14,7 +14,7 @@ OneBot组件选择使用
简单来说,就是不论是API交互还是事件订阅,都由OneBot组件作为**主动方**:主动发起HTTP请求、主动发起WebSocket连接。
-## 反向?
+### 反向?
如果你真的想要通过反向HTTP来接收事件推送,那么你需要自行搭建 HTTP 服务端,然后使用 `OneBotBot.push` 手动推送原始事件的JSON字符串。
你可以前往参考
diff --git a/Writerside/topics/onebot11-OneBotBot.md b/Writerside/topics/onebot11-OneBotBot.md
index 60e3ac7..66c59e5 100644
--- a/Writerside/topics/onebot11-OneBotBot.md
+++ b/Writerside/topics/onebot11-OneBotBot.md
@@ -68,8 +68,11 @@ Bot进行API请求时使用的HttpClient。
Bot进行API请求时使用的服务地址的host,来自配置信息。
-
-Bot进行API请求时使用的accessToken,来自配置信息。
+
+Bot进行API请求时使用的 accessToken,来自配置信息。
+
+
+Bot进行事件订阅的ws连接请求时使用的 accessToken,来自配置信息。
diff --git a/Writerside/topics/use-onebot11.md b/Writerside/topics/use-onebot11.md
index f4c6262..740f561 100644
--- a/Writerside/topics/use-onebot11.md
+++ b/Writerside/topics/use-onebot11.md
@@ -7,8 +7,7 @@ switcher-label: JavaAPI风格
## 前期准备
参考
-
-。
+ 。
## 安装
### 安装组件库
@@ -420,7 +419,10 @@ public static void configure(Application application) {
botConfiguration.setEventServerHost(URLUtilsKt.Url("ws://localhost:3001"));
// 其他配置, 一般都是可选属性
/// token
- botConfiguration.setAccessToken(null);
+ botConfiguration.accessToken(null);
+ // 或
+ botConfiguration.setApiAccessToken(null);
+ botConfiguration.setEventAccessToken(null);
/// ...
// 注册
@@ -482,7 +484,10 @@ public static void configure(Application application) {
botConfiguration.setEventServerHost(URLUtilsKt.Url("ws://localhost:3001"));
// 其他配置, 一般都是可选属性
/// token
- botConfiguration.setAccessToken(null);
+ botConfiguration.accessToken(null);
+ // 或
+ botConfiguration.setApiAccessToken(null);
+ botConfiguration.setEventAccessToken(null);
/// ...
// 注册
@@ -545,7 +550,10 @@ public static void configure(Application application) {
botConfiguration.setEventServerHost(URLUtilsKt.Url("ws://localhost:3001"));
// 其他配置, 一般都是可选属性
/// token
- botConfiguration.setAccessToken(null);
+ botConfiguration.accessToken(null);
+ // 或
+ botConfiguration.setApiAccessToken(null);
+ botConfiguration.setEventAccessToken(null);
/// ...
// 注册
diff --git a/Writerside/v.list b/Writerside/v.list
index 34d35c3..57ead27 100644
--- a/Writerside/v.list
+++ b/Writerside/v.list
@@ -7,7 +7,7 @@
-
+