0

我试图根据文档使用 api 对象上的“设备”参数向 ios 设备发送通知。如果我省略 'devices' 参数,则下面的 json 有效,但它将转到安装了应用程序的每个设备。我只是想让它转到我指定的设备 ID。我在目标 c 中使用 [[UIDevice currentDevice] identifierForVendor].UUIDString] 获取设备 ID。但是这个设备 ID 不起作用......任何帮助将不胜感激!

{
    "request": {
        "application": "xxxxx-xxxxx",
        "auth": "xxxxxxxxxxxxxxxxxxxxxxxx",
        "notifications": [
            {
                "send_date": "now",
                "content": "this is a test",
                "wp_type": "Toast",
                "devices": [
                    "xxxx-xxxx-xxxx-xxxx-xxxxxxx"
                ],
                "wp_count": 3,
                "data": {
                    "custom": "json data"
                },
                "link": "http://pushwoosh.com/"
            }
        ]
    }
}
4

1 回答 1

0

该请求看起来正确。看起来设备 UID 与系统中的设备 UID 不匹配。您可以使用推送令牌而不是设备 UID 检查吗?

于 2014-05-20T09:29:23.797 回答