私はGluuで動作するPOCを取得しようとしています。私はhttps://spring.io/guides/tutorials/spring-boot-oauth2/のチュートリアルに従って、それをfacebookで動作させました。私はグルーにそれを移動しようとしました。 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" }
Springブートの設定に関する問題OpenId ConnectとGluu
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で、ブートクライアント上で多くのオプションを試してみたが、何も動作していないようにみえます。私はこれが単純な修正だと仮定していますが、これに関する有用な情報を見つけることはできません。