Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
489 views
in Technique[技术] by (71.8m points)

objective c - iOS8 and iOS7 Push Notification Payload

Since iOS8 came up with interactive notification, is there any significant changes to make Payload to send push notification? If changes are there then how it will be handled in lower versions of iOS?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There is a small difference in payloads as given. However same interactive notification payload can be pushed to iOS7 or less, it will be shown as normal notification.

iOS8 Interactive Push Payload

{"aps":{"alert":"Hello Testing","badge":1,"sound":"default","category":"your_category_key"}}

"your_category_key" is nothing but the UIMutableUserNotificationCategory identifier.

Older Version less than iOS8 Payload

{"aps":{"alert":"Hello Testing","badge":1,"sound":"default"}}

And Apple has extended the payload size up to 2048 Bytes (2K). Previously it was 256 Bytes only.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...