先来张图片
? ? ? ? ??
我在用psotman 测试oauth授权码模式的出现了401的异常, 就是调用oauth/token.
我是想用code换token,但是发现报错了。这是为什么呢? 首先你要理解
所以我就明白怎么回事了
首先代码里面添加
@Override public void configure(AuthorizationServerSecurityConfigurer oauthServer) throws Exception { oauthServer .tokenKeyAccess("permitAll()") .checkTokenAccess("permitAll()") .allowFormAuthenticationForClients(); // oauthServer.allowFormAuthenticationForClients(); }
然后再给postman 添加参数
这样就OK了