2

可能重复:
Paypal 中带有导轨的无效商家配置

我正在玩 Active Merchant gem。我使用Rails cast(144)并创建了一个 ruby​​ 文件 ( credit_card.rb):

require "rubygems"
require "active_merchant"

ActiveMerchant::Billing::Base.mode = :test

gateway = ActiveMerchant::Billing::PaypalGateway.new(
  :login => "seller_1316503855_biz_api1.agileblaze111.com",
  :password => "********",
  :signature => "A5llddES-nIiDc8WBuZMOtm6yM2oANQrerVY20ty0ZxeN-izmKjwDtR0"
)

credit_card = ActiveMerchant::Billing::CreditCard.new(
  :type               => "visa",
  :number             => "4234609806354393",
  :verification_value => "123",
  :month              =>  '9',
  :year               =>  '2016',
  :first_name         => "shamith",
  :last_name          => "c"
)

billing_address = { 
    :name     => "John Smith",
    :address1 => '123 First St.',
    :address2 => '33333',
    :city     => 'Los Angeles',
    :state    => 'CA',
    :country  => 'US',
    :zip      => '90068',
    :phone    => '310-555-1234'
}

 billing_address1 = {
    :name => 'Test User',
    :company => '',
    :address1 => '123 S Main St',
    :address2 => '',
    :city => 'Akron',
    :state => 'OH',
    :country => 'US',
    :zip => '44333',
    :phone => '(310)555-5555'
  } 


if credit_card.valid?
  puts "Credit Card is valid"
  response=gateway.purchase(1000,credit_card,:ip=>"127.0.0.1",:billing_address=>billing_address1)
  if response.success?
     puts "Purchased"
  else
     puts "Error:#{response.message}"
  end
else
  puts "Error: credit card is not valid. #{credit_card.errors.full_messages.join('. ')}"end

我执行$ ruby credit_card.rb并收到以下错误:

Error: This transaction cannot be processed due to an invalid merchant configuration.
4

2 回答 2

1

你的ActiveMerchant::Billing::PaypalGateway线路有问题。我最近也经历了这个,并遇到了这个问题。

我在该集的评论中发布了指向 Paypal 文档的链接。他们在那里描述了获取您需要的 API 凭证的当前过程,因为 rails cast 大约有两年的历史并且稍微过时了。

我的沙盒帐户类型不正确且凭据不正确,因此我遇到了多个问题。

我最终发现的一件有用的事情是,在开发人员网站上,您可以创建新的沙盒帐户,在左侧有一个链接,您可以在其中查看您的沙盒帐户生成的任何 API 凭据。当我找到该链接时,我的链接是空白的,这使我创建了一个新的沙盒帐户并按照 Paypal 文档方法获取凭据。

如果这有帮助或没有帮助,请发布,因为我仍在学习如何使用 active_merchant 和 Paypal 沙箱,并且需要我能得到的所有练习。

于 2011-09-20T17:28:57.160 回答
0

您需要使用 Website Payments Pro 设置卖家账户。

  1. 使用预配置选项创建您的销售测试账户。
  2. Account Type下,选择Website Payments Pro

祝你好运!

于 2011-12-29T20:55:29.353 回答