计划的功能:HTTP错误:400,请求有错误

时间:2019-10-27 22:06:03

标签: firebase google-cloud-functions

我正试图每天在午夜运行firebase函数。

export const validatePremium = functions.pubsub.schedule('0 0 * * *').onRun(async context => {

    const snaps = await admin.firestore().collection("Users").where("premium", "==", true).get();

    // SOME BUSINESS LOGIC
    return true;
})

我得到了错误

⚠  functions: failed to create function validatePremium
HTTP Error: 400, The request has errors

不是很有帮助。

如果我运行与https.onCall函数相同的代码,那么它将起作用。

可能是什么问题?

1 个答案:

答案 0 :(得分:2)

更新了已发布的firebase-tools