我使用 Laravel 5.8,PHP 7.2。
我需要调整我进行身份验证的方式。
前
我曾经通过用户表中的本地数据库登录我的用户。
如果电子邮件+密码匹配,我将它们登录。
$email = strtolower(Input::get('email'));
$password = Input::get('password');
$dbAuth = Auth::attempt(array(
'email' => $email,
'password' => $password,
'active' => 1
));
if ($dbAuth) {
Session::put('user', Auth::user());
return Redirect::to('/dashboard')->with('success', 'You have been successfully logged in.');
} else {
return Redirect::to('/')->with('error', 'Username/Password Wrong')->with('email', $email)->withErrors($validator);
}
现在
现在我需要调用/loginAPI,它将返回一个token. 我需要将该令牌存储到浏览器的本地存储中。
我需要确保我的Auth::user()工作基于变化。
我该如何开始?
有人可以点亮一些灯吗?
慕码人8056858
神不在的星期二
catspeake