我正在使用auth0作为auth解决方案。我在users表中有is_admin列。 因此,我需要查看网站,因为某些特定用户会看到它。 我发现的就像是
Auth::login($user);
Auth::loginUsingId(1);
Auth::once($credentials);
但这一切都行不通。也许有一些方法可以使用auth0作为auth用户和标准laravel会话作为额外的auth这样的需求?
一些文档:
https://auth0.com/docs/quickstart/backend/laravel/01-authorization https://auth0.com/docs/quickstart/webapp/laravel/01-login