Przeglądaj źródła

企业微信回调接口配置,取消登录限制

zhouy 2 miesięcy temu
rodzic
commit
51c3a350e0

+ 1 - 1
uas-office-qywx-server/src/main/java/com/usoftchina/uas/office/qywx/config/WebSecurityConfig.java

@@ -20,7 +20,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
     @Override
     public void configure(WebSecurity web) throws Exception {
         web.ignoring().antMatchers("/resources/**", "/static/**", "/public/**",
-                "/html/**", "/css/**", "/js/**", "**/*.css", "**/*.js", "/api/**");
+                "/html/**", "/css/**", "/js/**", "**/*.css", "**/*.js", "/api/**" , "/qywx/**");
     }
 
     @Override