如何在 Auraphp 的 AuthFactory 中设置会话时间?

How to set session time in Auraphp's AuthFactory?

在过去的几个月里,我尝试在多个地方设置 Aura AuthFactory 中的会话 cookie。我似乎找不到合适的地方,也找不到一点关于如何设置会话超时的文档。

谁能指出我正确的方向?

你在找

public function newResumeService(
    AdapterInterface $adapter = null,
    $idle_ttl = 1440,
    $expire_ttl = 14400
) {

https://github.com/auraphp/Aura.Auth/blob/624fc819c7f329f8a269a219cfabe252573005a2/src/AuthFactory.php#L137-L138

这个?