We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
can you help me how to set custom ttl via configuration?
I tried to set it with:
oauth2.server: grants: authCode: false clientCredentials: ttl: 'PT10M' implicit: false password: true refreshToken: true
but it doesn't work. But it seems it is possible to set a custom value. I found it in file: OAuth2ServerExtension:133:
OAuth2ServerExtension:133
$ttl = $options->ttl ?? null;
I tried to debug it and $options is not a object, but it is an array:
$options
array 'authCode' => false 'clientCredentials' => array 'ttl' => 'PT10M' 'implicit' => false 'password' => true 'refreshToken' => true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
can you help me how to set custom ttl via configuration?
I tried to set it with:
but it doesn't work. But it seems it is possible to set a custom value. I found it in file:
OAuth2ServerExtension:133
:I tried to debug it and
$options
is not a object, but it is an array:The text was updated successfully, but these errors were encountered: