在 Rails 3.x 应用程序中禁用 Cookie

发布于 2024-12-02 09:52:34 字数 143 浏览 0 评论 0原文

有没有办法禁用 Rails 应用程序的所有 cookie?或者最好是在逐个控制器的基础上?我的问题是关于通过 Adob​​e 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夏天碎花小短裙 2024-12-09 09:52:34

在您想要避免 cookie 的控制器中,添加以下内容:

after_filter :skip_set_cookies_header

def skip_set_cookies_header
  request.session_options = {}
end

如果您有一组 api 控制器,请在 api_controller 类中设置它,并让您的其他控制器继承 api_controller。

由于会话选项为空,因此会跳过设置 Set-Cookie 标头。

In the controller you want to avoid cookies, add this:

after_filter :skip_set_cookies_header

def skip_set_cookies_header
  request.session_options = {}
end

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.

左耳近心 2024-12-09 09:52:34

如果您使用 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"

打小就很酷 2024-12-09 09:52:34

您可能想要使用 ActionController::Metal 并添加您可能需要的任何其他模块。

ActionController::Metal 非常准系统,跳过了典型 ApplicationController 的大部分功能,包括 cookie。

您可以调用 ApplicationController.ancestors 来了解通常包含的内容,与 ActionController::Metal.ancestors 相比,

以下是我最有可能的设置方式。

class SimpleController < ActionController::Metal
 #include ...
 #include ...
end

class FirstApiController < SimpleController
 def index
  #Code 
 end
end 

class SecondApiController < SimpleController
 def index
  #Code 
 end
end 

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.

class SimpleController < ActionController::Metal
 #include ...
 #include ...
end

class FirstApiController < SimpleController
 def index
  #Code 
 end
end 

class SecondApiController < SimpleController
 def index
  #Code 
 end
end 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文