我在iOS应用程序中使用Firebase推送通知.虽然我能够通过发送下面的有效负载来发送通知,但它在收到时不会发出声音.
{ "to": "myToken","notification": { "body": "test","title": "test" },"priority": "high" "sound": "default" }
如果我从控制台发送测试消息,它运行良好并播放通知声音.注意:
>我的授权码是正确的
>我发送http请求到https://fcm.googleapis.com/fcm/send
>我已经在iPhone 4,iPhone 6和iPhone 6S上进行了测试,全部接收
没有声音的通知
解决方法
你的JSON“声音”:“默认”应该在“通知”键里面而不是在JSON的根目录中.这个JSON应该可行.
{ "to": "myToken","notification": { "body": "test","title": "test","sound": "default" },"priority": "high" }