作者:U友50082089 | 来源:互联网 | 2023-06-24 22:17
报错信息39是单引号原因默认只支持post解决方法1.下载安装postman工具(或其他post工具)使用post调用2.代码增加get的方法参考资料stackoverflowc
报错信息
method_not_allowed
Request method 'GET' not supported
39是单引号
原因
默认只支持post
解决方法
下载安装postman工具(或其他post工具)
使用post调用
代码增加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);
}
...
}
参考资料
stackoverflow
csdn blog
oauth2(spring security)报错method_not_allowed(Request method 'GET' not supported)解决方法