我试图根据文档使用 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/"
}
]
}
}