php 获取当前用户的expires_at

xdyibdwo  于 2023-02-28  发布在  PHP
关注(0)|答案(1)|浏览(114)

我可以使用\Auth::id()获取用户ID,或者使用Auth::user()可以获取用户类。
如何获取当前用户的值oauth_access_tokens.expires_at(例如Auth::user()->accessToken->expires_at)。
我搜索了一下,但找不到任何解决办法。

r7xajy2e

r7xajy2e1#

我找到了从Auth获取expires_at的方法
getProtectedValue(\Auth::user()->token(),"attributes")["expires_at"]

相关问题