AppceleratorloginAPI响应错误意外的标识符

我正在使用Appcelerator iCloud·Cloud.Users.login·API的callback给我下面的回应:

 {"success":false,"error":true,"message":"JSON Parse error: Unexpected identifier \"An\""} 

我被困在了事情上,不能前进,我们在App Store上的App用户也受到了影响。

当我们从Xcode打开Appcelerator Titanium项目并从那里构build应用程序并在iOS模拟器或设备上运行时,就会出现问题。

这是我正在使用的代码:

 Cloud.Users.login({ login : userId, password : password, }, function(e) { //alert(e); Ti.API.info("In success ....Cloud.Users.login.."); Ti.API.info('response from login service'+JSON.stringify(e)); if (e.success) { Ti.API.info('User successfully login'); } else if (e.error) { Ti.API.info(e.message); _activityIndicator.hide(); alertWin.close(); } //button.show(); }); 

在我的情况下,由于我提供了"success":false的响应在我的情况下进入其他部分"success":false我从Appcelerator云API中获取的callback函数中的JSON为"success":false

帮我解决这个错误我正在callback。