Spring-Security-Oauth2:需要完全身份验证才能访问此资源
2022-09-01 00:08:14
我正在尝试与基于Java的配置一起使用。我的配置已完成,但是当我在tomcat上部署应用程序并点击访问令牌的URL时,生成以下错误:spring-security-oauth2.0
/oauth/token
Oauth
<oauth>
<error_description>Full authentication is required to access this resource</error_description>
<error>unauthorized</error>
</oauth>
我的配置在 Git 中心,请点击链接
代码很大,所以参考git。我正在使用chrome postman客户端发送请求。Follwing是我的要求。
POST /dummy-project-web/oauth/token HTTP/1.1
Host: localhost:8081
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
grant_type=client_credentials&client_id=abc%40gmail.com&client_secret=12345678
错误就像,URL是由 保护的,但在配置中,我授予访问此URL的所有权限。这个问题到底是什么?Oauth