我看过一堆帖子,包括与此相关的问题,但没有真正语法的示例。以下是我遗留的 Apple 静默通知的示例:
{
"to": "%MobileUser.DeviceId%",
"content_available": true,
"apns-push-type": "background",
"data": {
"notificationId": "%Some.Id%",
"KeyOne": "%Val.One%",
"KeyTwo": "%Val.One%",
}
}
所以我尝试前置:
"message": {
"apns": {
"payload": {
"aps": {
"token": "blah"
"notification": {
"title": "whatever",
"body": ""
},
"content_available": true,
"apns-push-type": "background",
"data": { etc etc
但我总是收到不好的请求。 有什么地方可以得到准确的语法吗? 我的安卓端可以工作,但苹果端不行。 我知道你现在可以将它们结合起来,但我不需要这样做。 我只需要为这些消息获得良好的语法,无论是无声的还是正常的。 谢谢