Spring 启动器 security-basic auth-vai zuul 服务器
Spring starter security-basic auth-vai zuul server
我有 zuul 服务器 vai,我正在调用 OAuth 的服务器来获取令牌 vai 邮递员,如果我通过在 body 中发送 cilent 凭据请求,我会取回令牌,但是当我选择通过发送客户端凭据来获取它时在 basic-auth header 我收到未经授权的 401.
添加后解决
@Override
public void configure(WebSecurity webSecurity) throws Exception {
webSecurity.ignoring()
.antMatchers("/auth/**");
}
我有 zuul 服务器 vai,我正在调用 OAuth 的服务器来获取令牌 vai 邮递员,如果我通过在 body 中发送 cilent 凭据请求,我会取回令牌,但是当我选择通过发送客户端凭据来获取它时在 basic-auth header 我收到未经授权的 401.
添加后解决
@Override
public void configure(WebSecurity webSecurity) throws Exception {
webSecurity.ignoring()
.antMatchers("/auth/**");
}