我试图按照文档使用api对象上的'devices'参数向ios设备发送通知。如果我省略"devices"参数,下面的json可以工作,但它会转到安装了应用程序的每个设备。我只想让它去到我指定的设备id。我使用[[UIDevice currentDevice] identifierForVendor]获取设备id。uidstring]在objective c.但是这个设备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/"
}
]
}
}
请求看起来是正确的。看起来设备UID与系统中的设备UID不匹配。你能用推送令牌而不是设备UID来检查吗?