2013-02-03 23 views
0

我想找到設備的UUID使用JavaScript與web作品與OS 7和更少的設備。如何使用JavaScript和網絡作品獲取黑莓uuid

我使用的代碼:

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" /> 

回答