1

我正在尝试使用Bluemix Services Push REST API中的消息服务向订阅了先前创建的标签的用户发送推送通知。问题是当我向多个标签发送通知时,如果用户注册了多个标签,他会多次收到相同的通知。

API 是这样说的:

tagNames (Array[string], optional): Send notification to the devices that have subscribed to any of these tags

所以我知道用户应该只收到一个通知,而不是正在发生的事情。

我的电话看起来像这样:

{
    "message": { 
        "alert": "Text notification",
    }, 
    "target": { 
        "tagNames": ["TAG1","TAG2","TAG3","TAG4","TAG5","TAG6","TAG7"] 
    },
    "settings": {
        "apns": {
            "badge": 1,
            "sound": "UILocalNotificationDefaultSoundName"
        }
    }
}
4

1 回答 1

1

与 Bluemix Push 开发团队确认这确实是服务中的一个缺陷,在这种情况下您应该只会收到一个通知。该团队已经为该问题创建了一个缺陷,一旦它被解决并推送到生产中,我将使用来自修复的任何附加信息或使用更改来更新此答案。

非常感谢您提请我们注意

于 2016-04-06T14:19:48.163 回答