我正在将iOS应用程序与Rails服务器集成。
在这里,我实现了设备身份验证。
当有新人通过我的应用进行注册时,我的日志中出现以下错误

Processing by Devise::RegistrationsController#create as JSON
Parameters: {"password_confirmation"=>"[FILTERED]", "email"=>"[email protected]", "password"=>"[FILTERED]", "registration"=>{"password_confirmation"=>"[FILTERED]", "email"=>"[email protected]", "password"=>"[FILTERED]"}}
WARNING: Can't verify CSRF token authenticity
(0.1ms)  begin transaction
(0.0ms)  rollback transaction
Completed 406 Not Acceptable in 28ms (ActiveRecord: 0.7ms)

最佳答案

默认情况下,响应json的设计已从2.2版中删除,因此请添加

respond_to :json

在您的应用程序 Controller 或您要使用json响应的特定 Controller 中。

10-08 18:17