2
2

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 1 year has passed since last update.

Firebase SDK とFirebase Admin SDKの違い

Posted at

ドキュメントやネット記事を読んで、Firebaseを操作するコードが違うと疑問を持ったあなたに送ります。

そもそも

Firebaseへの操作の仕方は複数あります。

Firebase SDK

エンドユーザーがFirebase を操作するために使用するライブラリ

Firebase Admin SDK

管理者権限でFirebase を操作するために使用するライブラリ

Firestoreへのアクセスの違い

使用するSDKによって初期化とFirestoreのアクセスの仕方も異なります。

Firebase SDK( Web バージョン 9 )

import { initializeApp } from 'firebase/app'
import { getFirestore, collection, query, getDocs} from 'firebase/firestore'

const firebaseConfig = {
  //...
}
const app = initializeApp(firebaseConfig)
const db = getFirestore(app)

const getUsers = async() => {
  const q = query(collection(db,  'users'))
  const usersSnapshot = await getDocs(q)
  usersSnapshot.forEach((doc) => {
    console.log(doc.id, ' => ', doc.data())
  })
}
getUsers()

Firebase Admin SDK(v10)

import { initializeApp, cert } from 'firebase-admin/app'
import { getFirestore } from 'firebase-admin/firestore'

const serviceAccountKey = require('../serviceAccountKey.json')
const app = initializeApp({
  credential: cert(serviceAccountKey)),
  databaseURL: '指定されたURL',
})
const otherFirestore = getFirestore(app)

const getUsers = async () => {
  const usersSnapshot = await otherFirestore.collection('users').get()
  usersSnapshot.forEach((doc) => {
    console.log(doc.id, ' => ', doc.data())
  })
}
getUsers()
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?