在 Rails 3.x 应用程序中禁用 Cookie
有没有办法禁用 Rails 应用程序的所有 cookie?或者最好是在逐个控制器的基础上?我的问题是关于通过 Adobe Lightroom 插件访问 Rails JSON api。显然,服务器响应中存在任何 cookie 数据都会导致 Lightroom 出现错误。
Is there a way to disable all cookies for a Rails app? Or preferably on a controller by controller basis? My problem is regarding access of a Rails JSON api by an Adobe Lightroom plugin. Apparently the presence of any cookie data in the response from the server causes an error in Lightroom.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在您想要避免 cookie 的控制器中,添加以下内容:
如果您有一组 api 控制器,请在 api_controller 类中设置它,并让您的其他控制器继承 api_controller。
由于会话选项为空,因此会跳过设置 Set-Cookie 标头。
In the controller you want to avoid cookies, add this:
If you have a set of api controllers, set this in a api_controller class and let your other controllers inherit the api_controller.
This skips setting Set-Cookie header since the session opts is empty.
如果您使用 Apache,您可以使用 mod_headers,这是一个标准的 apache mod。
标头始终未设置“Set-Cookie”
If you're using Apache, you can turn probably turn off cookies in the response by using mod_headers, which is a standard apache mod.
Header always unset "Set-Cookie"
您可能想要使用 ActionController::Metal 并添加您可能需要的任何其他模块。
ActionController::Metal 非常准系统,跳过了典型 ApplicationController 的大部分功能,包括 cookie。
您可以调用 ApplicationController.ancestors 来了解通常包含的内容,与 ActionController::Metal.ancestors 相比,
以下是我最有可能的设置方式。
You might want to use ActionController::Metal and add any additional modules that you might need.
ActionController::Metal is pretty barebone and skips most of the functionality of a typical ApplicationController including cookies.
You can call ApplicationController.ancestors to get an idea of what is typically included in contrast with ActionController::Metal.ancestors
Here's how I would most likely set it up.