I made this customization:
in resources\lang\pt-br\auth.php
'invalid_client' => 'Autentica莽茫o de cliente falhou',
and in OAuthServerException.php
public static function invalidClient()
{
$errorMessage = __('auth.invalid_client');
return new static($errorMessage, 4, 'invalid_client', 401);
}
Hello @gbgelado - there is no native way to do this in the library at the moment, but I think it is probably a good thing to implement. I will add this as an improvement idea and speak about this with the other maintainers. Thanks for the suggestion.
any news?