我们正在开发一款可以接收远程推送通知的应用。我们只知道有两种类型的通知,“正常”和无声。 我们想知道带有消息的静默通知的JSON结构。
{
"notification_type":2,
"aps":
{
"alert":"Message de la notification",
"content-available":1,
"badge":1,
"sound":"default"
}
}
答案 0 :(得分:2)
对于静默推送通知,我们省略alert
,badge
和sound
(未在静默推送中使用)键,然后不显示通知,但调用处理程序。 json应该是这样的:
{
"aps":
{
"content-available":1,
}
}
您也可以通过通知发送额外内容,以便您的应用知道该怎么做:
{
"aps":
{
"content-available":1,
}
"example-action": "example"
}