最近作成されたユーザーの UID を取得する方法はありますか?
createUser() documentationによると、何も返さないようです。
ユーザーに関する情報の保存を開始できるように、この情報を取得するにはどうすればよいでしょうか?
達成できる方法は、作成時にユーザーにログインすることです。しかし、既存のセッションを上書きしたくありません。
var firebaseRef = new Firebase('https://samplechat.firebaseio-demo.com');
firebaseRef.createUser({
email : "bobtony@firebase.com",
password : "correcthorsebatterystaple"
}, function(err) {
if (err) {
switch (err.code) {
case 'EMAIL_TAKEN':
// The new user account cannot be created because the email is already in use.
case 'INVALID_EMAIL':
// The specified email is not a valid email.
case default:
}
} else {
// User account created successfully!
}
});