0

我曾在 django 上使用 paypal。我使用这些设置(settings.py)将它与我的应用程序集成:

PAYPAL_WPP_USER = '****'
PAYPAL_WPP_PASSWORD = ****'
PAYPAL_WPP_SIGNATURE = '*****'
PAYPAL_RECEIVER_EMAIL = '*****'

但我想做的与这段代码不匹配。事实上,我有很多买家和很多卖家,但我认为 paypal pade 只适用于一个收款人。有什么想法吗?

4

1 回答 1

0

You can process payments on other PayPal accounts other than your own. You would just need to make sure that the accounts that you will be processing payments for have the service set up on their accounts that you will be using. You will also need to have them grant the correct permissions to your API username so that you can process a payment on their account. Then all that you have to do, is in your API call is pass over the variable "SUBJECT" and set the value to the email address of the PayPal account that you are wanting to process the payment for.

于 2013-05-20T11:40:19.407 回答