Does anyone know how long would it take for the token to expire? There no option now to set the token validity on the console.
相关问题
- adding sha1 in firebase app fails with error
- firebase storage cors strange Behaviour
- Firebase security rules difference between get() a
- LoginActivty with Firebase & Facebook authenticati
- How to add working directory to deployment in GitH
相关文章
- ASP.NET MVC 后台 + 微信小程序
- Page指令 的EnableSessionState="ReadOnly",怎么在web.confi
- How can make folder with Firebase Cloud Functions
- How exactly do Firebase Analytics handle session d
- Firestore Update a document field Using Rest API
- Symfony2: check whether session exists or not
- How to convert a FCM token to APNS token?
- App not showing Notification receiving FCM when th
In the latest release of Firebase Authentication, login sessions don't expire anymore. Instead it uses a combination of long-lived account tokens and short-lived, auto-refreshed access tokens to get the best of both worlds.
If you want to end a user's session, you can call
signOut()
.Its does expire. After one hour logged in the token id expire. If you try to verify sdk returns a error "Error: Firebase ID token has expired. Get a fresh token from your client app and try again. See https://firebase.google.com/docs/auth/server/verify-id-tokens for details on how to retrieve an ID token."
Is There such a way to change expiration time to Firebase token, not custom token.
Anybody that know how this really works.