您好我想從firebase數據庫中使用firebase雲功能http觸發器獲取數據。是否有可能使用functions.database.ref?如何使用firebase雲功能從firebase數據庫獲取數據http觸發器
var functions = require('firebase-functions');
var cors = require("cors");
var express = require('express');
var http = require('http');
const app = express()
//~ app.use(cors({ origin: true }))
app.get("/", (request, response) => {
response.send("Hello from Express on Firebase with CORS!")
})
app.get("/:id", (request, response) => {
functions.database.ref('/Users/'+request.params.id)
})
exports.httpFunction = functions.https.onRequest(app);
感謝
你提的問題是過於寬泛。如果你嘗試了某些東西,請添加一些代碼如果您沒有請Google搜索並閱讀一些關於Firebase和雲功能的教程。 Firebase doc對於解釋事物非常有用。檢查[問]以瞭解優秀問題。 – bennygenel
請檢查我的代碼 – harry