Hello,
I have a question about push registration.
I added the privilege h t t p : / / tizen.org/privilege/push and
I wrote the code like following
var service = new tizen.ApplicationControl("h t t p : / / tizen.org/appcontrol/operation/push_test");
tizen.push.registerService( service, registerPushSuccessCallback, errorPushCallback);
function errorPushCallback(response)
{ }
/* Define the registration success callback */
function registerPushSuccessCallback( id)
{ }
But, I've got the exception like below
"UnknownError: Platform error while registering the application. : Invalid parameter"
It worked well untill a few days ago.
Thanks.