OmniPay Paypal Express Checkout电话未通过

时间:2014-07-05 02:22:21

标签: paypal paypal-ipn omnipay

我似乎无法通过shippingPhone或billingPhone将其here

这是我的代码

    $cardInput = array(
        'firstName' => 'John',
        'lastName'  => 'Doe',
        'billingAddress1' => 'My Address',
        'billingPhone'  =>  'XXXXXXX', //or the shippingPhone
        'billingCity'   =>  'Miami',
        'billingState'  =>  'Florida',
        'billingPostCode'   => '33133',
        'email'     =>  'email@gmail.com',
    );

    $card = Omnipay::creditCard($cardInput);
    $response = Omnipay::purchase([
        'amount' => '100.00',
        'returnUrl' => 'http://site.org/?return=success',
        'cancelUrl' => 'http://site.org/?return=canceled',
        'card' => $card,
        'description'=>'This is the description',
    ])->send();

我错过了什么吗?

0 个答案:

没有答案