Closed3

FirebaseのClouldFunctionsを定期実行する

sukedonsukedon

サンプルこんな感じ

exports.scheduledFunctionName = functions.pubsub.schedule('every 5 minutes').onRun((context) => {
  console.log('This will be run every 5 minutes!');
  return null;
});
このスクラップは2022/02/17にクローズされました