如何让 BrainTree 透明重定向与 Rails 配合使用?
我正在使用 BrainTree gem 来实现透明重定向解决方案。当我运行 示例应用程序 时,它可以工作,但是当我在应用程序中尝试看似相同的代码时,这是我得到的错误: expected query string to have an http_status param
在代码中,此错误指的是 @result = Braintree::TransparentRedirect.confirm(request.query_string)
当我输出 request.query_string
的值时,我得到的只是 ""
你能帮我找出我缺少的内容和/或请求来自哪里吗?
I am using BrainTree gem to implement a Transparent Redirect solution. When I run a sample application, it works, but when I try seemingly the same code in my application, this is the error I get: expected query string to have an http_status param
In the code, this error refers to @result = Braintree::TransparentRedirect.confirm(request.query_string)
When I output the value of request.query_string
all I get is ""
Could you help me figure out what I am missing, and/or where the request is coming from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否将redirect_url 包含在隐藏参数中?
Braintree 文档中提供了更多信息。
Are you including the redirect_url in a hidden param?
There's more info in Braintree's docs.