📝 补充文档说明

This commit is contained in:
yadong.zhang 2021-08-11 10:57:25 +08:00
parent e1a4688ac0
commit d75d91db0d

View File

@ -167,6 +167,8 @@ System.out.println(authRequest.authorize(AuthStateUtils.createState()));
AuthRequest authRequest = AuthRequestBuilder.builder()
// 关键点:将自定义实现的 AuthSource 配置上
.extendSource(AuthExtendSource.values())
// source 对应 AuthExtendSource 中的枚举 name
.source("other")
// ... 其他内容不变,参考上面的示例
.build();
```