我正在尝试与Gluu合作的POC。我按照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" }

application.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和引导客户端上尝试了很多选项,试图解决这个问题,但是似乎没有任何效果。我假设这是一个简单的修复程序,但是我找不到任何有用的信息。

最佳答案

我有一个同事与我一起查看它,我们发现输入错误的重定向URL。现在我要解决下一个问题。

07-24 19:00