OmniAuth 身份验证后通过 POST 与 Rails 应用程序通信

发布于 2024-11-25 16:14:37 字数 425 浏览 0 评论 0原文

您好,我正在创建一个项目,在其中使用 OmniAuth 对用户进行身份验证。它工作正常,除了在我的应用程序中我想使用 POST 通过 javascript 将信息发送到服务器。

但是,当我调试应用程序时,我注意到如果我使用 POST 发送请求,它无法找到用户 - (我相信 request.env["omniauth.auth"] 变量根据我在断点处浏览时不存在)。

我通过 JSON 将一些调试信息输出回应用程序。 当我将 XMLHttpRequest 更改为使用 GET 时,它可以正常工作,并且我可以返回正确的信息。

正确的用法是什么,也许我的路线不正确?我也不确定是否使用“_method” - 这有帮助吗?也许我只是看错了方向?

在使用 OmniAuth 进行身份验证后,如何通过 javascript 中的 POST 发送并仍然检索 current_user

Hi I'm creating a project in which I use OmniAuth to authenticate a user. Its working correctly, except in my application I would like to send information to the server via javascript using POST.

However when I debug the application, I notice it cannot find the user if I send a request using POST - (I believe also the request.env["omniauth.auth"] variable does not exist according when I browsed at the breakpoint).

I'm outputting some debug information back to the application via JSON.
When I change the XMLHttpRequest to use GET, it works and I get back the correct information.

What is the correct usage, perhaps I have an incorrect route? I'm also not sure about using '_method' - would that help? Maybe I'm just looking in the wrong direction period?

How can I send via POST in javascript after authentication with OmniAuth and still retrieve the current_user

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

萌能量女王 2024-12-02 16:14:37

所以问题在于protect_from_forgery的工作方式。您需要做的是验证您的请求是否安全并且应该忽略伪造保护,您可以通过实施 forgery_whitelist 来做到这一点?在您的 ApplicationController 类中:

def forgery_whitelist?
  request.user_agent ~= /iPhone/ || self.current_user || super
end

在这个方法中,您可以实现将请求列入白名单的逻辑,并使 Rails 忽略伪造保护。

So the issue lies in the way protect_from_forgery works. What you'll have to do is validate that your request is safe and the forgery protection should be ignored, you can do this by implementing the forgery_whitelist? at your ApplicationController class:

def forgery_whitelist?
  request.user_agent ~= /iPhone/ || self.current_user || super
end

At this method you can implement the logic to whitelist a request and make Rails ignore the forgery protection.

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