Tizen在模拟器中推送通知

时间:2014-05-30 12:44:07

标签: tizen tizen-web-app tizen-emulator

我目前正在模拟器中开发一个小型Tizen Web应用程序,因为我没有开发人员设备。

对于这个应用程序,我需要使用推送消息。我请求访问推送服务,该请求已获批准。之后我尝试注册应用程序,如下所述:https://developer.tizen.org/documentation/articles/push-api

我已添加以下权限和访问来源,正如指南中所述:

<tizen:privilege name="http://tizen.org/privilege/push"/>
<access origin="https://euwest.push.samsungosp.com:8088" subdomains="true"/>

之后,我添加了以下代码,该代码也取自同一指南:

// Defines the data to be used when this process is launched by notification service.
var service = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/push_test");

tizen.push.registerService(service, registerSuccessCallback, errorCallback);

function registerSuccessCallback(id)
{
    console.log("Registration succeeded with id: " + id);
}

function errorCallback(response)
{
    console.log( 'The following error occurred: ' +  response.name);
}

但是,当我运行该代码时,我得到一个UnknownError。

我开始认为这可能是因为我使用了模拟器。我确实看到有一个用于模拟器的推送服务器,我是否需要请求访问该服务器而不是EU服务器才能在模拟器中工作?

对于它的价值,我能够从我的服务器发送推送请求,如https://developer.tizen.org/dev-guide/2.2.0/org.tizen.native.appprogramming/html/guide/messaging/push_server_api.htm

中所述

我的问题是:我错过了什么?为什么我一直在Tizen应用程序中得到UnknownError?

1 个答案:

答案 0 :(得分:3)

还添加以下权限和功能。

<tizen:privilege name="http://tizen.org/privilege/internet"/>

<feature name="http://tizen.org/feature/network.push"/>
<feature name="http://tizen.org/feature/network.wifi"/>

我也面临同样的问题,但通过添加上述权限和功能解决了问题。

如果你想要我可以给你,我有工作样品。