데모 · 목데이터입니다
프로젝트 레벨 · Cloud Functions · Opseer Demo 배포된 Cloud Functions를 런타임·트리거·메모리·타임아웃과 함께 나열하고, 선택하면 소스를 보여줍니다. 데모에서는 실행·삭제 버튼이 비활성화되며 관리는 Firebase Console에서 합니다.
Functions
65 활성
함수 목록

onUserCreate

nodejs20ACTIVE
트리거

Auth

메모리

256 MB

타임아웃

60s

리전

us-central1

import * as functions from 'firebase-functions/v2'

// onUserCreate · Auth trigger · nodejs20
export const onUserCreate = functions.https.onRequest(async (req, res) => {
  const payload = req.body
  // … handle onUserCreate …
  res.json({ ok: true })
})