我需要像这样将json发送到IOS设备:
{"aps":{"content-available":1}}
我应该使用 AppleNotification 还是 AppleNotificationPayLoad 类?请提供示例代码。这是我现在如何创建通知的示例:
AppleNotification notification = NotificationFactory.Apple()
.ForDeviceToken(token)
.WithAlert(message)
.WithSound("default")
.WithBadge(7);