You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm trying to integrate swagger with this implementation but its not working.
I have added following dependecies
io.springfox
springfox-swagger-ui
2.9.2
io.springfox
springfox-swagger2
2.9.2
io.swagger
swagger-jersey2-jaxrs
1.5.8
Along with it I have permitAll to following matcher
.antMatchers(AUTH_LIST).permitAll();
private static final String[] AUTH_LIST = { //
"/api/v2/api-docs*", //
"/v2/api-docs*", //
"/configuration/ui*", //
"/swagger-resources*", //
"/configuration/security*", //
"/swagger-ui.html*", //
"/webjars/**" //
};
But I'm getting exception
org.springframework.security.authentication.InsufficientAuthenticationException: Full authentication is required to access this resource
The text was updated successfully, but these errors were encountered:
Hi,
I'm trying to integrate swagger with this implementation but its not working.
I have added following dependecies
io.springfox
springfox-swagger-ui
2.9.2
io.springfox
springfox-swagger2
2.9.2
io.swagger
swagger-jersey2-jaxrs
1.5.8
Along with it I have permitAll to following matcher
.antMatchers(AUTH_LIST).permitAll();
private static final String[] AUTH_LIST = { //
"/api/v2/api-docs*", //
"/v2/api-docs*", //
"/configuration/ui*", //
"/swagger-resources*", //
"/configuration/security*", //
"/swagger-ui.html*", //
"/webjars/**" //
};
But I'm getting exception
org.springframework.security.authentication.InsufficientAuthenticationException: Full authentication is required to access this resource
The text was updated successfully, but these errors were encountered: