1
其他用戶帳戶根據在火力地堡文檔的Manage Users部,用戶簡檔可以使用方法來修改下面管理經由火力地堡AUTH()
var user = firebase.auth().currentUser;
user.updateProfile({
displayName: "Jane Q. User",
photoURL: "https://example.com/jane-q-user/profile.jpg"
}).then(function() {
// Update successful.
}, function(error) {
// An error happened.
});
所有這些指南中的例子似乎適合於僅currentUser
已登錄,但我們如何以編程方式修改其他用戶?有沒有我沒有看到的getUser(uid)
方法?
似乎可以使用Firebase Admin Node.js SDK完成此操作,但是我們如何從Web完成此操作?