mirror of
https://github.com/webmasterskaya/joomla-oauth-server.git
synced 2024-11-24 11:04:49 +03:00
18 lines
2.1 KiB
INI
18 lines
2.1 KiB
INI
COM_OAUTHSERVER_PARAMS_PRIVATE_KEY_LABEL = "Full path to the private key file"
|
|
COM_OAUTHSERVER_PARAMS_PRIVATE_KEY_DESCRIPTION = "How to generate a private key: https://oauth2.thephpleague.com/installation/#generating-public-and-private-keys"
|
|
COM_OAUTHSERVER_PARAMS_PRIVATE_KEY_PASSPHRASE_LABEL = "Passphrase of the private key, if any"
|
|
COM_OAUTHSERVER_PARAMS_ENCRYPTION_KEY_LABEL = "Encryption key"
|
|
COM_OAUTHSERVER_PARAMS_ENCRYPTION_KEY_DESCRIPTION = "The plain string or the ascii safe string used to create a Defuse\Crypto\Key to be used as an encryption key. How to generate an encryption key: https://oauth2.thephpleague.com/installation/#string-password"
|
|
COM_OAUTHSERVER_PARAMS_ENCRYPTION_KEY_TYPE_LABEL = "The type of value of 'Encryption key'"
|
|
COM_OAUTHSERVER_PARAMS_ACCESS_TOKEN_TTL_LABEL = "Access token TTL"
|
|
COM_OAUTHSERVER_PARAMS_ACCESS_TOKEN_TTL_DESCRIPTION = "How long the issued access token should be valid for. The value should be a valid interval: http://php.net/manual/en/dateinterval.construct.php#refsect1-dateinterval.construct-parameters"
|
|
COM_OAUTHSERVER_PARAMS_REFRESH_TOKEN_TTL_LABEL = "Refresh token TTL"
|
|
COM_OAUTHSERVER_PARAMS_REFRESH_TOKEN_TTL_DESCRIPTION = "How long the issued refresh token should be valid for. The value should be a valid interval: http://php.net/manual/en/dateinterval.construct.php#refsect1-dateinterval.construct-parameters"
|
|
COM_OAUTHSERVER_PARAMS_AUTH_CODE_TTL_LABEL = "Auth code TTL"
|
|
COM_OAUTHSERVER_PARAMS_AUTH_CODE_TTL_DESCRIPTION = "How long the issued auth code should be valid for. The value should be a valid interval: http://php.net/manual/en/dateinterval.construct.php#refsect1-dateinterval.construct-parameters"
|
|
COM_OAUTHSERVER_PARAMS_ENABLE_CLIENT_CREDENTIALS_GRANT_LABEL = "Enable client credentials grant"
|
|
COM_OAUTHSERVER_PARAMS_ENABLE_PASSWORD_GRANT_LABEL = "Enable password grant"
|
|
COM_OAUTHSERVER_PARAMS_ENABLE_REFRESH_TOKEN_GRANT_LABEL = "Enable refresh token grant"
|
|
COM_OAUTHSERVER_PARAMS_ENABLE_AUTH_CODE_GRANT_LABEL = "Enable auth code grant"
|
|
COM_OAUTHSERVER_PARAMS_REQUIRE_CODE_CHALLENGE_FOR_PUBLIC_CLIENTS_LABEL = "Require code challenge for public clients"
|