我正在尝试使用带有 Web 的 javascript 来查找设备 UUID,适用于 OS 7 及更低版本的设备。
我正在使用的代码:
function getIdentityData(){
$.ajax({
type: "get",
url: "http://localhost:8472/blackberry/identity/get",
success: function(msg){
alert(msg);
}
});
}
正如在他们的文档中发现的那样不起作用,我从来没有收到警报?https://developer.blackberry.com/html5/apis/blackberry.identity.phone.html
我的配置文件中有以下内容
<rim:permit>read_device_identifying_information</rim:permit>
<feature id="blackberry.identity.phone" />