应用程序在前台时收到 Twilio 通知警报
Twilio Notifications alert received when app in foreground
我在 ios 应用中使用 twilio 推送通知。问题是我也在前台模式下收到通知警报。 ios 不提供这个怎么可能。
另一个问题是如何设置 twilio 推送通知的标题?
对于 iOS 中的任何推送通知,这是结构 (developer.apple):
{
“aps” : {
“alert” : {
“title” : “Title”,
“subtitle” : “Subtitle”
“body” : “Body!”,
}
}
}
twilio也不例外,你必须像上面显示的那样配置你的通知,或者有一些例子:
Just go to end of page
请在 twilio 配置设置中检查您的包标识符。可能是某些字符未正确放置。
也许您已经在通知委托方法中配置了 alert 、 sound 、 badge 功能。
我在 ios 应用中使用 twilio 推送通知。问题是我也在前台模式下收到通知警报。 ios 不提供这个怎么可能。
另一个问题是如何设置 twilio 推送通知的标题?
对于 iOS 中的任何推送通知,这是结构 (developer.apple):
{
“aps” : {
“alert” : {
“title” : “Title”,
“subtitle” : “Subtitle”
“body” : “Body!”,
}
}
}
twilio也不例外,你必须像上面显示的那样配置你的通知,或者有一些例子: Just go to end of page
请在 twilio 配置设置中检查您的包标识符。可能是某些字符未正确放置。 也许您已经在通知委托方法中配置了 alert 、 sound 、 badge 功能。