Wanxiang Liu 5 anni fa
parent
commit
b490d06db2

+ 10 - 3
README.md

@@ -7,13 +7,19 @@
 - [钉钉官方JavaSDK 0.9.0](https://download.alicdn.com/dingtalk-desktop/sdk/dingtalk-chatbot-sdk-0.9.0.zip)
 
 ### API文档
-- [钉钉官方Wiki文档](https://open-doc.dingtalk.com/docs/doc.htm?spm=a219a.7629140.0.0.7b1HKw&treeId=257&articleId=105735&docType=1)
+- [钉钉官方Wiki文档](https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq)
 - [本程序API文档,待继续完善](https://apidoc.gitee.com/snowheart/dingtalk-robot/)
 
+### 贡献者列表
+
+- Alex Hu
+
 ### HelloWorld
+
 starter工程仅依赖SpringBoot的`spring-boot-autoconfigure`和`spring-boot-starter-web`模块,使用方法同样简单。
 
-1.在pom文件中引入依赖,当前版本`1.0.2.RELEASE`
+1.在pom文件中引入依赖,当前版本`1.0.3.RELEASE`
+
 ```        
 <dependency>
    <groupId>cn.snowheart</groupId>
@@ -24,10 +30,11 @@ starter工程仅依赖SpringBoot的`spring-boot-autoconfigure`和`spring-boot-st
 
 2.在application.properties中配置钉钉机器人的WebHook地址
 ```
-dingtalk.robot.webhook=https://oapi.dingtalk.com/robot/send?access_token=7eb0673858d5b8636cc4189a708517478d3444f25fe887aef73c7bf99756127f
+dingtalk.robot.access-token=7eb0673858d5b8636cc4189a708517478d3444f25fe887aef73c7bf99756127f
 ```
 
 3.在应用中注入`DingTalkRobotClient`之后,即可启动调用钉钉机器人的WebHook服务了。
+
 ```
 @Autowired
 private DingTalkRobotClient dingTalkRobotClient;

+ 9 - 0
spring-boot-dingtalk-robot-starter/src/main/resources/RELEASE.note

@@ -1,3 +1,12 @@
+### 1.0.3.RELEASE 2020-3-14
+1. 引入spring-boot-configuration-processor,完善对application.yml文件中配置项的提示
+2. 更新SpringBoot依赖版本到2.2.5.RELEASE
+3. 增加对机器人加签验证的功能支持
+4. 增加对sendMessageByURL()里面可能遇到的空指针异常的处理
+5. 增加新的贡献者Alex Hu
+
+=================================================================
+
 ### 1.0.2.RELEASE 2019-5-13
 1. 去除parent工程,优化pom结构
 2. 去除过时的@EnabledDingTalkRobot注解