基于Postman的Spring Security OAuth2授权与资源服务器测试

enyaitl3  于 2022-09-21  发布在  Postman
关注(0)|答案(1)|浏览(402)

我已经设置了一个授权和资源服务器,通过Baeldung(第2节和第3节)详细说明:https://www.baeldung.com/spring-security-oauth-auth-server

然而,我正在尝试通过 Postman 点击API,并收到了以下信息:

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Sun Aug 21 08:24:17 EDT 2022
There was an unexpected error (type=None, status=999).

我认为回调URL是我的问题,但我不知道默认情况下回调URL实际上应该是什么。

以下是我的 Postman 设置:

有谁能指出我做错了什么吗?

贾森

6ie5vjzr

6ie5vjzr1#

回调URL是OAuth 2.1授权请求中的redirect_uri参数。您应该在RegisteredClient的配置中指定它:

.redirectUri("http://127.0.0.1:8080/authorized")

**注意:**您遵循的教程非常过时。我建议开始使用官方参考文档的入门页面,并查看官方的samples

相关问题