回答

3

APN::Notification類有一個custom_properties屬性,用於在推送通知中包含任何通用數據。以您的有效載荷爲例,您可以這樣做:

apn = APN::Notification.new 
apn.badge = 1 
apn.custom_properties = {"content-available" => 1} 
相關問題