gpt4 book ai didi

ruby-on-rails - 从外部表单接收POST

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

我在另一个网站(使用不同的后端)上有一个表单,希望能够发布到我的Rails应用程序(在另一个域上)。

  • 如何为外部表单生成有效的真实性 token ,以便我的Rails应用程序可以接受它?
  • 假设我可以回答上述问题,那么我需要做别的什么特别的事情吗?除了真实性 token 外,其余的对我来说似乎很简单...

  • 谢谢您的帮助!

    最佳答案

    您无法从Rails应用程序外部生成原子性 token 。
    您可以做的是仅针对此操作添加disable the token protection,并使用基于before_filter的自定义实现。

    skip_before_filter :verify_authenticity_token, :only => :my_action
    before_filter :verify_custom_authenticity_token, :only => :my_action

    def verify_custom_authenticity_token
    # checks whether the request comes from a trusted source
    end

    关于ruby-on-rails - 从外部表单接收POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1730377/

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