1

我正在尝试使用 ActiveMerchant 进行 Paypal Recurring 交易调用。我在这里使用了补丁:

http://blog.vuzit.com/2008/08/01/paypal-website-payments-pro-us-with-recurring-billing-and-activemerchant/

我被困在这里:

ActiveMerchant::Billing::PaypalGateway.pem_file = File.read('paypal_cert.pem')

我很确定 pem 文件是从贝宝正确下载的。我收到的错误是:

/Library/Ruby/Gems/1.8/gems/activemerchant-1.5.1/lib/active_merchant/lib/connection.rb:129:in `initialize': Neither PUB key nor PRIV key:: nested asn1 error (OpenSSL::PKey::RSAError)
 from /Library/Ruby/Gems/1.8/gems/activemerchant-1.5.1/lib/active_merchant/lib/connection.rb:129:in `new'

from calling the commit method from line 49 of paypal_pro_recurring.

我只有 2 个文件——教程中的 paypal_pro_recurring.rb 和我编写的 paypalTest.rb,它们只需要所有文件并调用该函数。我希望错误不是像我必须从环境文件或其他东西中要求的那样愚蠢的东西。谢谢大家!

4

1 回答 1

0

PayPalGateway 需要密码吗?也许你忘记了。

当我为私钥提供错误的密码时,我收到了类似的错误消息(尽管在其他网关中)。

于 2010-05-03T13:48:17.197 回答