small config changes.

This commit is contained in:
Alexey Skobkin 2018-06-26 22:09:46 +03:00
parent 857a6c84c4
commit 84f2d5ece9
1 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,9 @@ class ApiTokenAuthenticator implements SimplePreAuthenticatorInterface, Authenti
public function createToken(Request $request, $providerKey)
{
if (!($tokenKey = $request->headers->get(self::TOKEN_HEADER))) {
throw new BadCredentialsException(sprintf('\'%s\' is invalid or not defined', self::TOKEN_HEADER));
// Throwing exception here will break anonymous authentication for login method
//throw new BadCredentialsException(sprintf('\'%s\' is invalid or not defined', self::TOKEN_HEADER));
return null;
}
return new PreAuthenticatedToken(