使用 HTTPS或PubSub触发器创建的函数无法使用firebase调度程序运行。
exports.helloworld = functions.https.schedule('every 5 minutes').onRequest((req, res) =>{
res.send("Hello World Ozone Here");
函数。https.schedule不是函数
答案 0 :(得分:0)
请参见https://firebase.google.com/docs/functions/schedule-functions。
export scheduledFunction = functions.pubsub.schedule('every 5 minutes').onRun((context) => { console.log('This will be run every 5 minutes!'); });