如何解决Paypal保险库信用卡收费失败问题

时间:2016-07-16 00:29:07

标签: php paypal paypal-sandbox paypal-rest-sdk

我正在尝试使用Paypal Sandbox向Paypal保险库信用卡付款,但我无法理解。似乎没有办法解决错误。它既可以工作,也可以不工作,我没有经历过工作。

我可以提取卡片清单,我可以找回一张特定卡片,但我无法向其中任何一张卡付款。

我正在使用PHP Paypal SDK。以下是Paypal看到的请求。

{
    "body": {
        "intent": "sale",
        "payer": {
            "payment_method": "credit_card",
            "funding_instruments": [
                {
                    "credit_card_token": {
                        "credit_card_id": "CARD-6XP216179L970340WK6BNY5A",
                        "payer_id": "1"
                    }
                }
            ]
        },
        "transactions": [
            {
                "amount": {
                    "currency": "USD",
                    "total": "26.01"
                }
            }
        ]
    },
    "header": {
        "x-pp-silover": "name\\u003dSANDBOX3.API.1\\u0026silo_version\\u003d1880\\u0026app\\u003dplatformapiserv\\u0026TIME\\u003d1702332759\\u0026HTTP_X_PP_AZ_LOCATOR\\u003d",
        "content-length": "233",
        "paypal-request-id": "323223593916288146862657311204",
        "x-slr-retry": "SLR-RETRY-EMPTY",
        "accept": "*/*",
        "client-auth": "No cert",
        "host": "api.sandbox.paypal.com",
        "user-agent": "PayPalSDK/PayPal-PHP-SDK 1.7.3 (platform-ver\\u003d5.6.23-2+deb.sury.org~xenial+1; bit\\u003d64; os\\u003dLinux_4.4.0-21-generic; machine\\u003dx86_64; crypto-lib-ver\\u003d1.0.2h; curl\\u003d7.47.0)",
        "x-slr-nobounce": "true",
        "x-slr-orig-script_uri": "https://api.sandbox.paypal.com/v1/payments/payment",
        "x-pp-corrid": "793fa20aaec8b",
        "pp_remote_addr": "99.99.99.1",
        "content-type": "application/json",
        "authorization": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxl4S0"
    },
    "additional_properties": {},
    "method": "POST"
}

我将IP修改为比我当前分配的内容。我不知道发布它是否是一个安全问题,这不是秘密。

我正在使用的代码看起来像这样。

$apiContext = new \PayPal\Rest\ApiContext(
            new \PayPal\Auth\OAuthTokenCredential(
                $clientId,
                $secret
                )
            );

        $cardToken = new CreditCardToken();
        $cardToken->setCreditCardId($paymentMethod->getProcessorId());
        $cardToken->setPayerId("1");

        $fi = new FundingInstrument();
        $fi->setCreditCardToken($cardToken);

        $payer = new Payer();
        $payer->setPaymentMethod("credit_card")
        ->setFundingInstruments(array($fi));
        $amount = new Amount();
        $amount->setCurrency("USD")
        ->setTotal("26.01");

        $transaction = new Transaction();
        $transaction->setAmount($amount);

        $payment = new Payment();
        $payment->setIntent("sale")
        ->setPayer($payer)
        ->setTransactions(array($transaction));
        print_r($payment);

            $payment->create($apiContext);
            if ($payment->getState() == 'approved') {
                return TRUE;
            }
            return FALSE;
        } catch (Exception $ex) {
            print_r($ex);
        }

$ paymentMethod-> getProcessorId()是一个有效的信用卡保险柜ID,我可以从Paypal的沙箱中检索。

这是Paypal的回复。

{
    "status": 500,
    "duration_time": 135,
    "body": {
        "message": "An internal service error occurred.",
        "information_link": "https://developer.paypal.com/webapps/developer/docs/api/#INTERNAL_SERVICE_ERROR",
        "name": "INTERNAL_SERVICE_ERROR",
        "debug_id": "793fa20aaec8b"
    },
    "additional_properties": {},
    "header": {
        "Content-Length": "209",
        "Content-Language": "*",
        "X-SLR-RETRY": "500",
        "CORRELATION-ID": "793fa20aaec8b",
        "Date": "Fri, 15 Jul 2016 23:53:39 GMT",
        "Connection": "close",
        "Paypal-Debug-Id": "793fa20aaec8b",
        "PROXY_SERVER_INFO": "host\\u003dslcsbplatformapiserv3001.slc.paypal.com;threadId\\u003d569",
        "Content-Type": "application/json"
    }
}

据我了解,内部错误只是意味着,某些事情是不对的,但它没有说出什么是不对的。使用它很烦人,它们在排除故障的响应中没有给你任何帮助,而且显然没有通过Paypal SB仪表板检查的日志。

1 个答案:

答案 0 :(得分:2)

这是一个内部错误,所以它不会传达出错的地方。在这里收到回复将很难。

从PayPal获得回复的最佳选择是创建一个帐户 https://www.paypal-techsupport.com/并使用debug_id在那里发布相同的问题。 (单击站点页脚中的“联系支持”)。他们会告诉它是什么样的错误。我在获得他们的帮助方面有成功的记录。

如果在内部错误的情况下,来自他们的响应时间比第二个获得帮助的时间长,https://github.com/paypal/PayPal-PHP-SDK也会在那里发布debug_id。