大家好!
所以在Laravel 4中我们可以做到
Route::filter('auth.basic', function()
{
return Auth::basic('username');
});
但是现在这是不可能的,并且文档没有提供关于如何做的线索。那么有人可以帮忙吗?
谢谢!
答案 0 :(得分:9)
使用与默认代码相同的代码创建新的自定义中间件:
并覆盖默认的“电子邮件”字段,如:
return $this->auth->basic('username') ?: $next($request);
答案 1 :(得分:1)
使用Laravel 5.7,handle方法如下:
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string|null $guard
* @param string|null $field
* @return mixed
*/
public function handle($request, Closure $next, $guard = null, $field = null)
{
return $this->auth->guard($guard)->basic($field ?: 'email') ?: $next($request);
}
如果您查看函数定义,则可以指定$field
值。
According to Laravel's documentation,您可以提供中间件参数:
在定义路由时,可以通过用:分隔中间件名称和参数来指定中间件参数。多个参数应以逗号分隔:
使用以下命令,我可以指定要在基本身份验证中使用的字段:
Route::middleware('auth.basic:,username')->get('/<route>', 'MyController@action');
:,username
语法可能有点令人困惑。但是,如果您看一下函数定义:
public function handle($request, Closure $next, $guard = null, $field = null)
您会注意到$next
之后有两个参数。 $guard
默认为null
,我希望它保持为空/空,因此我省略了该值并提供了一个空字符串。下一个参数(如文档所述,用逗号隔开)是我想用于基本身份验证的$field
。
答案 2 :(得分:0)
这就是我正在使用的
class AuthenticateOnceWithBasicAuth
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
return Auth::onceBasic('username') ?: $next($request);
}
}