diff --git a/README.md b/README.md index eded0ada4aa5258c08202afffee6e638ed97120d..12dbcbad72e56a0052bc3382651141a0ac343b33 100644 --- a/README.md +++ b/README.md @@ -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(); ```