I am trying to add new subscriber with pushwoosh remote api services.
RegisterDevice
POST https://cp.pushwoosh.com/json/1.3/registerDevice
{
"request": {
"application": "XXXX-XXXX", // THE PROJECT ID ON PUSHWOOSH
"push_token": "APA........", // GOOGLE DEVICE REGISTRATION KEY
"language": "en",
"hwid": "YYYYYYYYY", //UUID
"device_type": 3 //ANDROID
}
}
// RESULT 200 - OK
My app works perfectly fine.
when i check my pushwoosh control panel i see subscribers but the Android platform shows no subscribers.
I cross checked the project id , server key... and everything fine.
what am i doing wrong?