我有一个使用Passport身份验证的Laravel应用程序。
登录
public function authenticate(Request $request)
{
$params = [
'grant_type' => 'password',
'client_id' => 1,
'client_secret' => "secret",
'username' => request('username'),
'password' => request('password'),
'active' => 1,
'scope' => '*'
];
$request->request->add($params);
// verify the credentials and create a token for the user
$proxy = Request::create('oauth/token', 'POST');
return Route::dispatch($proxy);
}
我已经在 AuthServiceProvider 上确定了到期时间:
Passport::routes(function ($router) {
$router->forAccessTokens();
});
Passport::tokensExpireIn(now()->addMinute(1));
Passport::refreshTokensExpireIn(now()->addDays(30));
它可以工作,但是令牌在1分钟后过期。我希望令牌的到期日期不同,这取决于我尝试登录的位置,因为我有网站,桌面应用程序和Android应用程序。
例如:
我当时正在考虑从尝试登录的位置发送邮件给我,但这是一个好方法吗?还有其他可能的方法吗?
现在我已经尝试过了:
-)从AuthServiceProvider中删除:
Passport::tokensExpireIn(now()->addMinute(1));
并在登录功能中添加:
if (request('from') == 'something') {
Passport::tokensExpireIn(now()->addYears(1));
} else {
Passport::tokensExpireIn(now()->addHours(8));
}
$proxy = Request::create('oauth/token', 'POST');
答案 0 :(得分:6)
您可以从下面的链接获取帮助,请找到
For getting user agent detail and apply condition base on agent
例如,您可以使用以下代码
if ( Agent::isDesktop() ) {
Passport::tokensExpireIn(now()->addYears(1));
} else if(Agent::isMobile()){
Passport::tokensExpireIn(now()->addMonth(5));
}else{
Passport::tokensExpireIn(now()->addHours(8));
}