How to check if user has valid Auth Session Firebase iOS?

前端 未结 7 2247
生来不讨喜
生来不讨喜 2021-02-19 04:53

I wanna check if the user has still a valid session, before I present the Home View controller of my app. I use the latest Firebase API. I think if I use the legacy, I\'ll be ab

相关标签:
7条回答
  • 2021-02-19 05:57
    if Auth.auth().currentUser?.uid != nil {
    
       //user is logged in
    
        }else{
         //user is not logged in
        }
    
    0 讨论(0)
提交回复
热议问题