使用云功能从firebase数据库中读取数据而不依赖于事件[重复]

Posted

技术标签:

【中文标题】使用云功能从firebase数据库中读取数据而不依赖于事件[重复]【英文标题】:Reading data from firebase database using cloud functions without relying on events [duplicate] 【发布时间】:2018-03-27 16:50:17 【问题描述】:

我已经研究并仅找到了诸如onWrite() 之类的侦听器示例,用于从数据库访问数据的实例,但这些取决于事件。 如何仅在需要时使用这些功能从数据库中读取快照。 提前致谢。

【问题讨论】:

你可以使用HTTPS触发 firebase.google.com/docs/functions/http-events @alexkucksdorf 这不是重复的,这个问题对不知道 firebase 有这样功能的人很有用 【参考方案1】:

使用 HTTPS 触发器,如下所述: https://firebase.google.com/docs/functions/http-events

另外,请查看此官方示例:https://github.com/firebase/functions-samples/tree/master/quickstarts/time-server

exports.unguessableFunctionName = functions.https.onRequest((req, res) => 
  return doSomething().then(res => 
    res.status(200).send(res);
  );
);

请确保此端点不会成为安全问题

此外,您可以在受保护的(读/写 == false)数据库节点上附加 onWrite 事件,因此只有您可以从控制台触发它

【讨论】:

以上是关于使用云功能从firebase数据库中读取数据而不依赖于事件[重复]的主要内容,如果未能解决你的问题,请参考以下文章

无法从 firebase 数据库中检索数据(云功能)

如何从 firebase 云功能访问 bigquery 数据?

在云功能 Firebase 中访问数据

firebase云函数错误TypeError:无法读取未定义的属性“子”

如何限制从 Firebase 读取数据的速率?

在一个云功能中从 firebase 数据库中检索多个数据