如何安排Firebase功能?

时间:2019-05-27 04:07:21

标签: google-cloud-platform firebase-cloud-messaging google-cloud-functions

使用 HTTPS或PubSub触发器创建的函数无法使用firebase调度程序运行。

exports.helloworld = functions.https.schedule('every 5 minutes').onRequest((req, res) =>{

   res.send("Hello World Ozone Here");

函数。https.schedule不是函数

1 个答案:

答案 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!');
});