Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
Issue #1121: Notification is not shown on ios device
Browse files Browse the repository at this point in the history
  • Loading branch information
macdonst committed Sep 8, 2016
1 parent 946052a commit 4327612
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/PAYLOAD.md
Original file line number Diff line number Diff line change
Expand Up @@ -1179,6 +1179,21 @@ but in order for the same `notification` event you would need to send your push

The `title` and `body` need to be in the `notification` part of the payload in order for the OS to pick them up correctly. Everything else should be in the `data` part of the payload.

## GCM Messages Not Arriving

For some users of the plugin they are unable to get messages sent via GCM to show up on their devices. If you are running into this issue try setting the `priority` of the message to `high` in the payload.

```javascript
{
"registration_ids": ["my device id"],
"notification": {
"title": "My Title",
"body": "My message"
},
"priority": "high"
}
```

# Windows Behaviour

## Notifications
Expand Down

0 comments on commit 4327612

Please sign in to comment.