此代码按预期工作,但发送的所有通知均设置为默认到期时间(28 天)。
from pyfcm import FCMNotification
push_service = FCMNotification(api_key="<api-key>")
data_message = {"foo":"bar"}
result = push_service.notify_single_device(registration_id=registration_id, data_message=data_message)
如何将过期时间设置为小于默认值,以便非常旧的通知不会进入用户设备?