我想从我的应用中禁用Firebase用户,但Firebase文档只为我提供删除用户的选项。
我认为解决方案就像创建用户ex: https://www.googleapis.com/identitytoolkit/v3/relyingparty/signupNewUser?key=[YourKey]
但没有关于此的文件。
答案 0 :(得分:2)
Firebase Admin SDK有一个禁用用户的选项。
请参阅this the documentation,其中包含此代码示例:
admin.auth().updateUser(uid, { email: "modifiedUser@example.com", emailVerified: true, password: "newPassword", displayName: "Jane Doe", photoURL: "http://www.example.com/12345678/photo.png", disabled: true }) .then(function(userRecord) { console.log("Successfully updated user", userRecord.toJSON()); }) .catch(function(error) { console.log("Error updating user:", error); });