[java-idp-plugin-oidc-rp] branch main updated: Fix request mapping to support POST in addition to GET callbacks

Phil Smart philip.smart at jisc.ac.uk
Tue Sep 27 08:27:48 UTC 2022


This is an automated email from the git hooks/post-receive script.

philsmart pushed a commit to branch main
in repository java-idp-plugin-oidc-rp.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-oidc-rp.git;a=commit;h=08b1a6d7d8a59b84c7ab65aeb0d076eec86745e3

The following commit(s) were added to refs/heads/main by this push:
     new 08b1a6d  Fix request mapping to support POST in addition to GET callbacks
08b1a6d is described below

commit 08b1a6d7d8a59b84c7ab65aeb0d076eec86745e3
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Tue Sep 27 09:27:42 2022 +0100

    Fix request mapping to support POST in addition to GET callbacks
---
 .../idp/plugin/authn/oidc/rp/impl/AuthorizationController.java          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/AuthorizationController.java b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/AuthorizationController.java
index 0f7eb55..e901094 100644
--- a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/AuthorizationController.java
+++ b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/AuthorizationController.java
@@ -233,7 +233,7 @@ public class AuthorizationController extends AbstractInitializableComponent {
      * @throws ExternalAuthenticationException throw if there is an error accepting the authz response.      
      * @throws IOException throw if there is an error accepting the authz response.
      */
-    @GetMapping("/callback")
+    @RequestMapping("/callback")
     public void authorizationCallback(@Nonnull final HttpServletRequest httpRequest,
             @Nonnull final HttpServletResponse httpResponse) throws ExternalAuthenticationException, IOException {
         

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list