Как запланировать функции firebase? - PullRequest
1 голос
/ 27 мая 2019

Функция, созданная с использованием HTTPS или триггера PubSub, не будет работать с использованием планировщика firebase.

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

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

functions.https.schedule не является функцией

1 Ответ

0 голосов
/ 27 мая 2019

См. 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!');
});

...