使用功能时在本地执行/触发 Firebase 功能的正确方法是什么?firebase-tools
firebase serve
假设您具有以下功能:
exports.hello = functions.https.onRequest((req, res) => {
res.send('Hello World');
});
如果通常会hello
通过对以下内容进行 HTTP POST 调用来触发生产功能https://us-central1-foobar.cloudfunctions.net/hello
:
curl -X POST -H "Content-Type:application/json" https://us-central1-foobar.cloudfunctions.net/hello
firebase serve
在本地使用时如何构造 HTTP POST url ?目标是在 Firebase 托管 + 功能解决方案中启动生产之前调试/测试功能。
将一个目标localhost:5000
而不是https://us-central1-foobar
?
感谢您提供任何帮助。