Push notification services problem cause by device ID
Hello,
I'm following the tutorial about push notifications http://docs.appery.io/tutorials/sendi... (this feature has recently changed, hasn't it?) and I'm having some trouble with a couple of REST services.
The service that registers the device works fine, but the update device service and the receiving info device are returning the following errors:
{
"status":"404 Not Found",
"url":"https://api.appery.io/rest/push/reg/3...",
"response":{
"code":"PNDU006",
"description":"Device id: 352288057237910 not found"
}
}
{
"status":"404 Not Found",
"url":"https://api.appery.io/rest/push/reg/3...",
"response":{
"code":"PNDG006",
"description":"Device id: 352288057237910 not found"
}
}
As you can see, my phone's deviceId contains a ; character that is cut and that is not returned in the error message. Could that be the problem?
Thank you very much