We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f412f commit 2a3d98dCopy full SHA for 2a3d98d
src/VerifierServer/OAuth2Authenticator.php
@@ -73,8 +73,8 @@ public function __construct(
73
$this->default_redirect = "$scheme://$host:$http_port" . explode('?', $request->getUri()->getPath())[0];
74
75
$this->redirect_home = "$scheme://$web_address:$http_port";
76
+ $this->allowed_uri[] = $this->redirect_home . "/{$this->endpoint_name}"; // must be first in array for redirect_uri check
77
$this->allowed_uri[] = $this->redirect_home;
- $this->allowed_uri[] = $this->redirect_home . "/{$this->endpoint_name}";
78
if ($resolved_ip) {
79
$this->allowed_uri[] = "$scheme://$resolved_ip:$http_port/";
80
$this->allowed_uri[] = "$scheme://$resolved_ip:$http_port/{$this->endpoint_name}";
0 commit comments