How to delete firebase Authentication Users from Android App?

后端 未结 3 823
暖寄归人
暖寄归人 2021-01-27 14:00

Firebase dashboard view here

I need to remove A user from firebase authenticated Users list - using my mobile application. Authentication method is email and password au

3条回答
  •  余生分开走
    2021-01-27 14:31

    If you want to allow application to delete user in the console, there is no pure client-side solution. As far as i've known, there are two option.

    1. User Firebase cloud function to delete user when specific event occur to Firebase database.
    2. Create backend with Admin SDK and build endpoints for user to call an manipulate user data.

提交回复
热议问题