gpt4 book ai didi

ruby-on-rails-3 - 关闭 Rails 3 中的 CSRF token

转载 作者:行者123 更新时间:2023-12-03 04:49:26 29 4
gpt4 key购买 nike

我有一个 Rails 应用程序,它为 iPhone 应用程序提供一些 API。我希望能够简单地在资源上发布,而不介意获取正确的 CSRF token 。我尝试了一些在 stackoverflow 中看到的方法,但它们似乎不再适用于 Rails 3。

谢谢你帮助我。

最佳答案

在要禁用 CSRF 的 Controller 中进行检查:

skip_before_action :verify_authenticity_token

或者对除少数方法之外的所有内容禁用它:

skip_before_action :verify_authenticity_token, :except => [:update, :create]

或者仅禁用指定的方法:

skip_before_action :verify_authenticity_token, :only => [:custom_auth, :update]

更多信息:RoR Request Forgery Protection

关于ruby-on-rails-3 - 关闭 Rails 3 中的 CSRF token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5669322/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com