当前位置:  开发笔记 > 后端 > 正文

Api :: V1 :: UsersController #create中的ActionController InvalidAuthenticityToken

如何解决《Api::V1::UsersController#create中的ActionControllerInvalidAuthenticityToken》经验,为你挑选了1个好方法。



1> Deepak Mahak..:

您需要在application_controller.rb中进行以下更改

更改

class ApplicationController < ActionController::Base
  # Prevent CSRF attacks by raising an exception.
  # For APIs, you may want to use :null_session instead.
  protect_from_forgery with: :exception
end

class ApplicationController < ActionController::Base
  # Prevent CSRF attacks by raising an exception.
  # For APIs, you may want to use :null_session instead.
  protect_from_forgery with: :null_session
end

编辑

更好的方法是跳过特定控制器的身份验证

class Api::V1::UsersController < ApplicationController
  skip_before_action :verify_authenticity_token

  respond_to :json
  # ...
end

推荐阅读
大大炮
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有