简体   繁体   中英

Push notification sound is not working

I am using Push Notifications in my app.when notifications comes,i am not getting the notification sound of the notification and also in iPad settings i switched-on all the notification buttons in iPad even though the notification sound is not coming.

{
    alert = "Testing commands@2014-12-01T12:16:26",
    sound = "default"
}

I am getting the sound file like this.But the notification sound is not coming.

I am new to the PushNotification concept.Can anyone please help to solve this...

you should use JSON format to send your notifications encapsulated in aps dictionary like:

{

    "aps" : {

        "alert" : "Your message.",

        "badge" : 0,

        "sound" : "default"

    }
}

for complete reference: https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/ApplePushService.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM