0

angularjs-app で firebase simple-login を使用しています。既存のすべてのユーザー アカウントを管理する可能性はありますか (Forge コンソールを使用しない場合)?

これらのアカウントを編集および削除するには、管理者ユーザーを有効にする必要があります。

4

1 に答える 1

1

When you allow (for example) Twitter users to log in to you Firebase application, all Twitter users can log in to your Firebase application. You can't directly control specific user accounts, unless you implement your own custom authentication.

What you do have control is over what those user accounts have (read and write) access to. You do this through Firebase's security rules. If you'd remove an accounts read/write access from all your data, you've essentially locked them out of your Firebase.

You can programmatically set the security rules through the REST API. See updating security rules through rest api.

于 2014-08-24T12:36:08.760 に答える