Web 推送 API:标题和 body 最大长度以及如何删除推送通知
Web Push API: title and body max length and how to delete push notification
我正在尝试计算发送到 Chrome 和 Firefox 的桌面推送通知的最大标题和 body 长度。
是否可以删除未使用 message_id 属性发送的通知?
谢谢
the max title and body length for desktop push notification
目前标准没有说明最大长度。如果通知标题或 body 对于给定设备而言太长,则在显示通知时会被截断。
is it possible to delete a notification that wasn't delivered using the message_id attribute?
你指的是什么? message_id
可能是 FCM 或其他服务的特定内容(它不是标准的一部分)。
一般来说,推送 API 允许您使用 the tag
option 替换通知。
我正在尝试计算发送到 Chrome 和 Firefox 的桌面推送通知的最大标题和 body 长度。
是否可以删除未使用 message_id 属性发送的通知?
谢谢
the max title and body length for desktop push notification
目前标准没有说明最大长度。如果通知标题或 body 对于给定设备而言太长,则在显示通知时会被截断。
is it possible to delete a notification that wasn't delivered using the message_id attribute?
你指的是什么? message_id
可能是 FCM 或其他服务的特定内容(它不是标准的一部分)。
一般来说,推送 API 允许您使用 the tag
option 替换通知。