我在我的 Rails 应用程序中使用 Devise gem 进行身份验证。我可以通过以 Json 请求格式传递数据来创建用户,以从 Titanium 移动应用程序设计 Rails 应用程序。但是当我尝试在移动应用程序中设置登录以使用设计时,它显示如下错误
{"error":"You need to sign in or sign up before continuing."}
我的代码如下所示
var regDetails = '{"email": "'+userNmTxt.value+'", "password": "'+passwordTxt.value+'"}';
var client = Titanium.Network.createHTTPClient({timeout: 5000});
client.open("POST", "http://10.100.85.43:3000/session/create");
client.setRequestHeader("Content-Type", "application/json");
client.send(regDetails);
client.onload = function(e)
{
alert('Logged in successfully' + this.responseText);
}
client.onerror = function(e)
{
alert('On error' + this.responseText);
}
我究竟做错了什么?