🦒 【Vue学習】超Vue.js 2 完全パック:ログイン認証【245続編】
作成日: 2022/02/20
2

ユーザー登録のシーン

signInWithPasswordと、signUpの違い
登録では、signUpがただしかった模様

.post(
          "/accounts:signInWithPassword?key=hogehogehogehogehoge",
          {
            email: this.email,
            password: this.password,
            returnSecureToken: true,
          }
        )

.post("/accounts:signUp?key=hogehogehogehogehoge", {
          email: this.email,
          password: this.password,
          returnSecureToken: true,
        })

https://firebase.google.com/docs/reference/rest/auth