我正在使用 React 构建一个 Laravel 应用程序作为 API。我想在使用护照授权 Oauth 时将默认身份验证字段“电子邮件”更改为“用户名”字段。在不更改 Laravel AuthenticatesUser 特征的情况下,最好的方法是什么。
问问题
309 次
1 回答
1
在您的用户模型中,您可以添加以下方法以通过用户名而不是电子邮件登录:
/**
* Find the user instance for the given username.
*
* @param string $username
* @return \App\User
*/
public function findForPassport($username)
{
return $this->where('username', $username)->first();
}
https://laravel.com/docs/7.x/passport#customizing-the-username-field
于 2020-04-02T05:00:49.693 回答