mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-23 05:33:06 +05:30
Client may return an array of redirect URIs
This commit is contained in:
parent
8f418cff08
commit
143a2e32f7
@ -146,7 +146,9 @@ class ImplicitGrant extends AbstractAuthorizeGrant
|
||||
|
||||
$scopes = $this->validateScopes(
|
||||
$this->getQueryStringParameter('scope', $request),
|
||||
$client->getRedirectUri()
|
||||
is_array($client->getRedirectUri())
|
||||
? $client->getRedirectUri()[0]
|
||||
: $client->getRedirectUri()
|
||||
);
|
||||
|
||||
$stateParameter = $this->getQueryStringParameter('state', $request);
|
||||
|
Loading…
Reference in New Issue
Block a user