0

我正在将 Trigger.io 用于 iOS / Android 应用程序,并尝试获取电话簿中所有电子邮件的列表。

我打电话

forge.contact.selectAll(selectAllSuccessCb, selectAllErrorCb);

然后迭代每个返回的联系人以获取完整的联系人详细信息,并提取电子邮件地址:

forge.contact.selectById(contactRef.id, function (contact) {
    // do stuff with contact email address(es) here
}

我正在测试的两台设备上有大约 1400 个联系人(应该是相同的 - 都登录到同一个 Google 帐户)。三星 Galaxy S Android 2.3.6 运行良好。

三星 Galaxy Nexus Android 4.1 在 8 个联系人上失败,并出现以下错误:

[WARNING] Error while executing API method: contact.selectById
[DEBUG] Returning: {"content":{"type":"UNEXPECTED_FAILURE","message":
"Forge Java error: NumberFormatException: Invalid int: \"null\"",
"full_error":"java.lang.NumberFormatException: Invalid int: \"null\"\n\tat 
java.lang.Integer.invalidInt(Integer.java:138)\n\tat java.lang.Integer.parseInt(Integer.java:355)\n\tat 
java.lang.Integer.parseInt(Integer.java:332)\n\tat 
io.trigger.forge.android.modules.contact.Util.contactToJSON(Util.java:340)\n\tat 
io.trigger.forge.android.modules.contact.API.contactIdToJSONObject(API.java:70)\n\tat 
io.trigger.forge.android.modules.contact.API.selectById(API.java:80)\n\tat 
java.lang.reflect.Method.invokeNative(Native Method)\n\tat java.lang.reflect.Method.invoke(Method.java:511)\n\tat 
io.trigger.forge.android.core.ForgeApp.callJavaFromJavaScript(ForgeApp.java:194)\n\tat 
io.trigger.forge.android.core.ForgeJSBridge.callJavaFromJavaScript(ForgeJSBridge.java:8)\n\tat 
android.webkit.BrowserFrame.stringByEvaluatingJavaScriptFromString(Native Method)\n\tat 
android.webkit.BrowserFrame.stringByEvaluatingJavaScriptFromString(Native Method)\n\tat 
android.webkit.BrowserFrame.loadUrl(BrowserFrame.java:271)\n\tat 
android.webkit.WebViewCore.loadUrl(WebViewCore.java:2029)\n\tat 
android.webkit.WebViewCore.access$1900(WebViewCore.java:57)\n\tat 
android.webkit.WebViewCore$EventHub$1.handleMessage(WebViewCore.java:1321)
android.os.Handler.dispatchMessage(Handler.java:99)\n\tat android.os.Looper.loop(Looper.java:137)
android.webkit.WebViewCore$WebCoreThread.run(WebViewCore.java:827)
java.lang.Thread.run(Thread.java:856)\n"},"status":"error","callid":"B40384E4-62A1-4460-866D-924855F3930F"}

这里有什么问题,我该如何解决这个问题?谢谢

4

1 回答 1

1

这是由联系人数据库中的电子邮件或电话条目造成的,它们的类型为空……不太清楚这是怎么发生的!但它已在平台的 v1.4.25 中修复。

http://docs.trigger.io/en/v1.4/release-notes.html#v1-4-25

于 2013-01-25T17:49:16.297 回答