security工作笔记006---oauth2(spring security)报错method_not_allowed(Request method 'GET' not supported)解决

 JAVA技术交流QQ群:170933152

最近做智慧城市项目,太恶心了。。。各种不会,个人负责权限验证中心服务,。。。唉,慢慢研究吧。。

报错信息


method_not_allowed
Request method 'GET' not supported

39是单引号

原因

默认只支持post

解决方法

  1. 下载安装postman工具(或其他post工具)
    使用post调用
    security工作笔记006---oauth2(spring security)报错method_not_allowed(Request method 'GET' not supported)解决_第1张图片

  2. 代码增加get的方法
@Configuration
public class OAuthSecurityConfig extends AuthorizationServerConfigurerAdapter {
...
    @Override
    public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
        ...
        endpoints.allowedTokenEndpointRequestMethods(HttpMethod.GET, HttpMethod.POST);// add get method
        ...

        endpoints.tokenServices(tokenServices);
    }
...
}

你可能感兴趣的:(Spring,Cloud,security)