0

I use Firebase Authentication for login and sign up in my app.

It works fine but problem is when I delete a user manually from the Firebase Authentication page then open the app the user i deleted still logged in.

Aren't there any way to fix this problem ?

SUX
  • 850
  • 8
  • 21

1 Answers1

1

Its probably due to you using Access Token and Access Token is still valid even though you deleted user. To avoid that problem easy fix would be when you start app try to Refresh Access Token.

You should also look into how long token is valid.. Maybe try to shorten expiration time.

freaksor9
  • 71
  • 4