我目前正在模拟器中开发一个小型 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。
我开始认为这可能是因为我使用的是模拟器。我确实看到有一个用于模拟器的推送服务器,我是否需要请求访问该服务器而不是欧盟服务器才能在模拟器中工作?
对于它的价值,我能够从我的服务器发送一个推送请求,如https://developer.tizen.org/dev-guide/2.2.0/org.tizen.native.appprogramming/html/guide/中所述消息传递/push_server_api.htm
我的问题是:我错过了什么?为什么我在 Tizen 应用程序中不断收到 UnknownError?