gpt4 book ai didi

api - google-calendar API通知事件提醒

转载 作者:行者123 更新时间:2023-12-04 17:54:12 25 4
gpt4 key购买 nike

我需要与谷歌日历集成,我有 API 发生的基本内容,但现在意识到提醒只会通知 via email, SMS

所以 google api“推送通知”,POST 到 URL 将无法使用提醒...

那么我如何在我的应用程序中通知触发了提醒,是否有变通办法?检查电子邮件的可扩展性不是很好。轮询谷歌日历服务器,也不可扩展吗?我必须在我的解决方案中轮询每个用户帐户吗?

如何通过API通知提醒?谢谢

[什么是“弹出窗口”作为上述 google-calendar 链接上的其他通知方法?]

最佳答案

关于您关于 popup 的问题,据说提醒是通过 UI 弹出窗口发送的。

EventReminder[] reminderOverrides = new EventReminder[] {
new EventReminder().setMethod("email").setMinutes(24 * 60),
new EventReminder().setMethod("popup").setMinutes(10),
};

您可以引用这个SO thread: How to Create a Reminder Notification其中,您需要 AlarmManager 定期(每天、每周、..)安排您的通知,并需要一个 Service 在 AlarmManager 关闭时启动您的通知。

关于api - google-calendar API通知事件提醒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41774592/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com