在初始化Firebase函数之后尝试部署模板函数时,我不断收到:HTTP错误:400,请求有错误。有什么想法吗?
这是相关的代码。
export const helloWorld = functions.https.onRequest((request, response) => {
response.send("Hello from Firebase!");
});
答案 0 :(得分:0)
Firebase不需要命名导出(clone
),而是希望包含该函数的export const ...
对象运行。将其更改为:exports
。此外,过去尝试使用Firebase CLI的较早版本是a recurrent issue。尝试通过运行exports.helloWorld = ...
对其进行更新。