docs: 修复 OAuth2 相关文档不正确描述之处

This commit is contained in:
click33 2024-10-30 16:24:26 +08:00
parent 0bcfeb231b
commit f8807ef2bc

View File

@ -80,7 +80,7 @@ URL 没有通过校验,拒绝授权!
### 4、其它规则
1、AllowUrls 配置的地址不允许出现 `@` 字符。
1、AllowRedirectUris 配置的地址不允许出现 `@` 字符。
- 反例:`http://user@sa-token.cc`
- 反例:`http://sa-oauth-client.com@sa-token.cc`
@ -88,7 +88,7 @@ URL 没有通过校验,拒绝授权!
*详见源码:[SaOAuth2Template.java](https://gitee.com/dromara/sa-token/blob/master/sa-token-plugin/sa-token-oauth2/src/main/java/cn/dev33/satoken/oauth2/template/SaOAuth2Template.java)
`checkRedirectUri` 方法。*
2、AllowUrls 配置的地址 `*` 通配符只允许出现在字符串末尾,不允许出现在字符串中间位置。
2、AllowRedirectUris 配置的地址 `*` 通配符只允许出现在字符串末尾,不允许出现在字符串中间位置。
- 反例:`http*://sa-oauth-client.com/`
- 反例:`http://*.sa-oauth-client.com/`