0

我正在尝试让 POC 与 Gluu 一起工作。我按照https://spring.io/guides/tutorials/spring-boot-oauth2/上的教程进行操作,并使其与 facebook 一起使用。然后我试图把它移到gluu。通过另一篇关于 stackoverflow 的文章解决了几个问题,但现在我遇到了这个错误。
{ "error": "invalid_request_redirect_uri", "error_description": "The redirect_uri in the Authorization Request does not match any of the Client's pre-registered redirect_uris.", "state": "RexEdf" }

应用程序.yml: security: oauth2: client: clientId: "<my client id>" clientSecret: <my client secret> accessTokenUri: https://<gluu server>/oxauth/seam/resource/restv1/oxauth/token userAuthorizationUri: https://<gluu server>/oxauth/seam/resource/restv1/oxauth/authorize tokenName: oauth_token authenticationScheme: form clientAuthenticationScheme: form scope: openid resource: userInfoUri: https://<gluu server>/oxauth/seam/resource/restv1/oxauth/authorize

我在 gluu 和引导客户端上尝试了很多选项来尝试解决这个问题,但似乎没有任何效果。我假设这是一个简单的修复,但我无法找到任何有用的信息。

4

2 回答 2

1

我让一位同事和我一起查看它,我们发现了一个错误输入的重定向 url。现在我要处理下一个问题了。

于 2017-05-15T18:16:45.710 回答
0

在我们的例子中,除了将重定向 uri 添加到clientin Gluu 之外,我们还必须转到该sector identifier部分,并为特定客户端添加了一个新条目,用于重定向登录 Uri

部门导航

于 2020-05-06T10:13:20.613 回答