将通知推送到 BlueMix 中的标签

Push Notifications to tags in BlueMix

我正在尝试使用 Bluemix 服务推送 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"
        }
    }
}

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

非常感谢您提请我们注意此事