我有一个简单的后端,可以注册用户并使用 firebase-admin 包生成 jwt。
当我在 firebase 控制台中使用此自定义令牌登录时 -> 身份验证未设置电子邮件地址。有没有办法从那里看到电子邮件地址?
我有一个简单的后端,可以注册用户并使用 firebase-admin 包生成 jwt。
当我在 firebase 控制台中使用此自定义令牌登录时 -> 身份验证未设置电子邮件地址。有没有办法从那里看到电子邮件地址?
您可以使用该updateUser()
方法更新用户的电子邮件地址(此处有详细文档):
admin.auth().updateUser(uid, {
email: "modifiedUser@example.com"
})
.then(function(userRecord) {
// See the UserRecord reference doc for the contents of userRecord.
console.log("Successfully updated user", userRecord.toJSON());
})
.catch(function(error) {
console.log("Error updating user:", error);
});