我正在玩Mojo SDK,我希望得到所有联系人。
this.controller.serviceRequest('palm://com.palm.contacts/crud', {
method: 'listContacts',
parameters: {
limit: 100
},
onSuccess: this.handleListResponse.bind(this),
onFailure: function(errResp){
Mojo.Log.info(errResp.errorText)
}.bind(this),
onerror: function(errResp){
Mojo.Log.info(errResp.errorText)
}.bind(this)
});
这就是我现在所拥有的,但我没有得到任何回报。并且Mojo.Log.info似乎不起作用。有什么建议吗?
由于
答案 0 :(得分:0)
我在PRE开发方面也很新,但我认为这就是问题所在。
返回的错误是“未找到帐户”。您需要添加accountId:作为服务请求的参数。
根据文档,该帐户ID是一个Synergy帐户,需要为您的应用程序创建。 Click here for reference about the accountId and createAccount methods