|
|
@@ -86,6 +86,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
|
|
|
.antMatchers("/login").permitAll()
|
|
|
// 放行匹配前缀的请求
|
|
|
.antMatchers("/api/account/code/**").permitAll()
|
|
|
+ .antMatchers("/api/thirdparty/**").permitAll()
|
|
|
.anyRequest().authenticated();
|
|
|
|
|
|
// 配置 FilterChainProxy 过滤器链
|