为啥 Auth::attempt 在 Laravel 5.3 中总是返回 false?
Posted
技术标签:
【中文标题】为啥 Auth::attempt 在 Laravel 5.3 中总是返回 false?【英文标题】:Why is Auth::attempt always returns false in Laravel 5.3?为什么 Auth::attempt 在 Laravel 5.3 中总是返回 false? 【发布时间】:2017-03-25 00:52:54 【问题描述】:我是 Laravel 的新手。我尝试在 Laravel 5.3 中使用多重身份验证,我的 auth.php 文件是:
<?php
return [
*/
'defaults' => [
'guard' => 'web',
'passwords' => 'users',
],
'guards' => [
'web' => [
'driver' => 'session',
'provider' => 'users',
],
'api' => [
'driver' => 'token',
'provider' => 'users',
],
'courier' => [
'driver' => 'session',
'provider' => 'couriers',
],
'client' => [
'driver' => 'session',
'provider' => 'clients',
]
],
'providers' => [
'couriers' => [
'driver' => 'eloquent',
'model' => App\Courier::class,
],
'clients' => [
'driver' => 'eloquent',
'model' => App\Client::class,
],
'users' => [
'driver' => 'eloquent',
'model' => App\User::class,
]
],
'passwords' => [
'couriers' => [
'provider' => 'couriers',
'table' => 'password_resets',
'expire' => 60,
],
'clients' => [
'provider' => 'clients',
'table' => 'password_resets',
'expire' => 60,
],
],
];
然后,当我将客户或快递员存储在数据库中时,我使用bcrypt
作为密码(同时使用函数Hash::make()
作为密码)。例如,我的模型 Courier 是:
<?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
class Courier extends Authenticatable
[..]
public function setPasswordAttribute($pass)
$this->attributes['password'] = bcrypt($pass);
[..]
当更新信使时,在我的控制器中我有:
public function update(Request $request, $id)
$fieldsCourier = $request->all();
$courier = Courier::find($id);
if( isset($fieldsCourier['password']) )
$fieldsCourier['password'] = bcrypt($fieldsCourier['password']);
if( $courier->update($fieldsCourier) )
$courier = Courier::find($id);
我有一个名为 authenticate 的方法,但该方法尝试总是返回 false (invalid_credentials)。即便如此发送有效凭据.. 这是我的代码:
public function authenticate(Request $request)
$credentials = $request->only('email', 'password');
try
if ( auth()->guard('courier')->attempt($credentials) )
$user = Auth::guard('courier')->user();
else
return response()->json(['error' => 'invalid_credentials'], 401);
catch (JWTException $e)
return response()->json(['error' => 'could_not_create_token'], 500);
return response()->json(compact('user'));
我不知道我做错了什么。我做错什么了吗?
【问题讨论】:
【参考方案1】:你已经在你的模型和控制器上加密了两次密码。
只删除其中一个
例如:不要在你的控制器上使用bcrypt
,因为你已经在你的模型上使用了bcrypt
。
【讨论】:
以上是关于为啥 Auth::attempt 在 Laravel 5.3 中总是返回 false?的主要内容,如果未能解决你的问题,请参考以下文章
在 Auth::attempt() Laravel 5.1 中禁用重定向
Laravel 4 - Auth::attempt() 不工作