-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OidcAuthenticator
response is send to target_link_uri
instead of redirect_uri
#160
Comments
Ran in to this same issue, this is what fixed it for me: Replace |
We also have the same issue. @isl-dbouman do you maybe want to create a PR for this? |
wazelin
added a commit
that referenced
this issue
Jan 28, 2025
…-launch-authentication fix: #160 redirect to the actual redirect_uri after verifying that it matches the registered tool host
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
According to the LTI 1.3 specs, the out-of-band registration process includes registration of redirect uri provided by the tool. The authentication response shall be send only to one of those uri. The specific uri is provided by the tool via the
redirect_uri
parameter in the authentication request.However,
OidcAuthenticator
is sending the authentication response to thetarget_link_uri
, which is the uri to which the tool is supposed to redirect the user after validating the authentication response.lib-lti1p3-core/src/Security/Oidc/OidcAuthenticator.php
Line 120 in d525604
The text was updated successfully, but these errors were encountered: