The Apple Notifications use a JSON payload to send the notification object. The maximum size of the payload is 4096 bytes.
Simple alert message
{
"aps":{
"alert":"Alert from sgcWebSockets!"
}
}
Alert with title and subttile.
{
"aps" : {
"alert" : {
"title" : "Game Request",
"subtitle" : "Five Card Draw"
"body" : "Bob wants to play poker",
},
"category" : "GAME_INVITATION"
},
"gameID" : "12345678"
}