0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Firebase Authenticationで作成されたユーザーのIDをFirestoreで独自に定義したユーザードキュメントのIDとして使う方法

Last updated at Posted at 2020-12-07

Firestore Authenticationで管理されているIDをFirestore上の独自に定義したユーザーコレクションと連携したいケースはよくあると思います。
add()を用いると自動でIDが生成されてしまいますが、doc()の第一引数に任意のIDを取ることができるので、
doc()でイニシャライズしてからset() を用いドキュメントを作成すれば任意のIDをドキュメントに設定できます。

以下例

final user = {
  'name': 'hoge',
  'profile' : 'huga'
}

final res = await _auth.createUserWithEmailAndPassword(
     email: 'hoge@hoge.com', password: 'hugahuga');

FirebaseFirestore.instance
  .collection('users') //自分で定義したユーザーコレクションのpath
  .doc(res.user.uid)
  .set(user);

補足
コードの例はdartで書かれています。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?