失败:(TESTMODE)此市场类型的交易无法在此系统上处理
我已经使用 Authorize.net 创建了一个测试帐户,并使用 ActiveMerchant 进行处理 网站的信用卡付款。我总是遇到的错误是 ActiveMerchant 文档中提到的 Error#*87 - “无法在此系统上处理此市场类型的交易”。有什么建议如何解决此错误? 以下是我创建网关的方法。我还检查了 gateway.test?它返回 true。
gateway = ActiveMerchant::Billing::Base.gateway(:authorized_net).new(
:login =>'API Login ID',
:password =>'Transaction Key',
:test => true)
I have created a test account with Authorize.net and am using ActiveMerchant to process
credit card payments for a website. What error I always get is Error#*87 - "Transactions of this market type cannot be processed on this system" mentioned in ActiveMerchant documentations. Any suggestions how to resolve this error ?
Following is how i created my gateway. I also checked gateway.test? and it returns true.
gateway = ActiveMerchant::Billing::Base.gateway(:authorized_net).new(
:login =>'API Login ID',
:password =>'Transaction Key',
:test => true)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
Try