3

我正在使用 paypal-sdk-merchant gem。到目前为止,我已经使用以下命令设置了一个商家帐户:

PayPal::SDK.configure(
        :mode      => "sandbox",
        :app_id    => "APP-sdfgjkl",
        :username  => "lprieto-facilitator_api1.hasu.cl",
        :password  => "Z7XGVDCHBJN",
        :signature => "AFcWxV21C7fd0v3bYYYRCpSSRlXDCFVGBHLBRTnmAzXxHddoa5e",
        :sandbox_email_address => "lprieto-facilitator_api1.hasu.cl")

然后创建付款

api         = PayPal::SDK::Merchant::API.new

到目前为止,这一切都很好,但现在我必须根据该人购买的国家/地区更改贝宝帐户。如果我不断更改 PayPal::SDK.configure 会有任何一致性问题吗?

例如,如果有人在巴西访问并且配置发生更改。然后智利的一个人访问并且配置发生了变化。之后,巴西人付款。它会有巴西的配置还是智利的配置?

对于在 ruby​​ on rails 应用程序中拥有多个 Paypal 帐户,您有什么建议?

先感谢您。

4

1 回答 1

0

我建议看看https://github.com/paypal/PayPal-Ruby-SDK因为这个 gem 不支持 rails 4 并且将被弃用。

至于您手头的问题:查看 API,您确实需要PayPal::SDK.configure()为每种不同类型的商家/国家/地区调用。您可以为此创建一个 YML 配置文件,例如config/paypal.yml

chile:
  mode: sandbox
  app_id: APP-123
  username: user1
  password: pass1
  signature: ABCDEF
  sandbox_email_address: test@example.com

brasil:
  mode: sandbox
  app_id: APP-456
  username: user2
  password: pass2
  signature: GHIJKL
  sandbox_email_address: test2@example.com

并在您的应用程序中使用它,例如:

@api_chile = PayPal::SDK::Merchant::API.new(:chile)
@api_brasil = PayPal::SDK::Merchant::API.new(:brasil)

希望这可以帮助!

于 2015-10-20T20:23:02.067 回答