Firebase中的Cron Job

问题描述 投票:0回答:1

大家好我的问题是如何在firebase实时数据库中创建一个cron作业,我有一个Android应用程序和应用程序有奖励,当用户在后端得到奖励我更新一个bool var礼物为真并且只有当礼物是假的时候,用户才能获得奖励,然后当他获得奖励时礼物变为真,我需要一个cron工作来每天重置这个变量,你能帮助我吗? PD:我正在为Android游戏和firebase实时数据库统一工作到后端

firebase unity3d cron-task
1个回答
1
投票

您可以使用firebase云功能https://firebase.google.com/docs/functions/http-events创建HTTP功能。此函数将访问实时数据库并将Gift变量设置为false。

然后使用GCP Cloud调度程序https://cloud.google.com/scheduler/每天调用此函数非常容易。

© www.soinside.com 2019 - 2024. All rights reserved.