We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
iss
1 parent 7de2564 commit c74618fCopy full SHA for c74618f
1 file changed
src/Server.php
@@ -73,7 +73,11 @@ final public function respondToAuthorizationRequest(
73
// Validate the HTTP request and return an AuthorizationRequest object.
74
$authRequest = $authorizationServer->validateAuthorizationRequest($request);
75
} catch (OAuthServerException $serverException) {
76
- return $this->createOauthServerExceptionResponse($response, $serverException);
+ $httpResponse = $this->createOauthServerExceptionResponse($response, $serverException);
77
+ // @CHECKME: Is this a 302 redirect? If so, a `iss` query param should be added to the redirect URL in the Location header
78
+ $httpResponse = $this->addIssuerToRedirectUrl($httpResponse);
79
+
80
+ return $httpResponse;
81
}
82
83
if ($user instanceof UserEntityInterface) {
0 commit comments