【发布时间】:2014-11-26 04:57:17
【问题描述】:
我使用 Paypal ExpressCheckout 方法进行付款。 我想让我的用户在没有贝宝账户的情况下使用他们的信用卡购买。 Its work fine 当我使用一次性付款时。 我的付款参数(货币、签名、用户名和密码除外)如下所示:
'amt'=> '300.00',
'paymentAction' => 'Sale',
'desc' => 'some desc',
'qty' => 1,
'solutionType' => 'Sole', <--this option allow buy by credit card w/o pp account
'landingPage' => 'Billing',
但是当我想设置定期付款时,its not working anymore。 我的定期付款参数:
'amt' => '300.00',
'l_billingType0' => 'RecurringPayments',
'l_billingAgreementDescription0' => 'Some desc',
'solutionType' => 'Sole',
'landingPage' => 'Billing',
Paypal 强制用户在这种情况下创建 pp 帐户 :( PayPal 帐户可选它在我的 pp 帐户中打开。
知道我做错了什么吗?
【问题讨论】: