1
執行/觸發Firebase功能的正確方法locally何時使用firebase-tools
功能firebase serve
?雲端功能本地HTTP觸發器
比方說,你具備的功能:
exports.hello = functions.https.onRequest((req, res) => {
res.send('Hello World');
});
如果一般人會通過發送HTTP POST調用的東西觸發生產函數hello
像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
?
感謝您提供任何幫助。
謝謝!你們好棒。 –