PayPal REST API(PHP)未完成交易

时间:2014-08-12 19:20:57

标签: php api rest paypal

我对PayPal的REST API相对较新,所以我可能在这里错过了一个关键元素,但我所做的与GitHub中的示例相似:

https://github.com/paypal/rest-api-sdk-php/blob/master/sample/payments/CreatePaymentUsingPayPal.php

我非常接近,因为我将API上下文设置为我在PayPal的开发人员站点上创建的应用程序中的客户端ID和密码(首先使用沙箱,现在使用沙箱)。这是我创建apiContext之后的部分:

            $payer = new Payer();
            $payer->setPayment_method("paypal");

            $item = new Item();
            $item -> setName($itemDescription)
                    -> setCurrency("USD")
                    -> setQuantity(1)
                    -> setPrice($itemPrice);

            $itemList = new ItemList();
            $itemList->setItems(array($item));

            $amount = new Amount();
            $amount->setCurrency("USD")
                    ->setTotal($itemPrice);

            $transaction = new Transaction();
            $transaction->setAmount($amount)
                    ->setItemList($itemList)
                    ->setDescription($itemDescription);

            $redirectURLs = new RedirectUrls();
            $redirectURLs->setReturnUrl($successURL);
            $redirectURLs->setCancelUrl($cancelURL);

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

            try {
                    $payment->create($apiContext);
            }
            catch (PayPal\Exception\PPConnectionException $ex) {

                    print "Exception:  " . $ex->getMessage() . PHP_EOL;
                    var_dump($ex->getData());
                    exit(1);
            }

            # get the redirect URL to pass the user on to PayPal for payment processing
            $redirectURL = "";
            foreach ( $payment->getLinks() as $link ) {
                    if ( $link->getRel() == "approval_url" ) {
                            $redirectURL = $link->getHref();
                            break;
                    }
            }

            // if we get a URL, redirect the user to PayPal's website
            if ( $redirectURL != "" ) {

                    $ppPayID = $payment->getId();

                    # write the ID to the DB
                    $dbQuery = "update members set ppPayID = '" . dbAccess("sanitize", $ppPayID) . "' where memberID = $memberID;";

                    # update the DB
                    $dbResults = dbAccess("query", $dbQuery);

                    //header("Location: $redirectURL");
                    print "<script language='JavaScript'>location.href = '$redirectURL';</script>";
                    exit;
            }
            else {
                    return false;
            }

一切似乎都运转良好:我在看到物品信息时传递给PayPal,我可以取消交易并通过取消URL返回我的PHP应用程序,甚至可以使用真实账户提交付款并通过成功网址退回到我的应用程序。这是它的样子;

http://example.com/scripts.php?pp=success&memberID=1&token=EC-7G861271R3854####&PayerID=77PAUYJCFJ###

(其中#s也是字母数字字符,以防万一)

我遇到的问题是,虽然它看似成功,但交易不会显示在我的商家帐户的任何位置,也不会显示在我的个人帐户中。知道这里发生了什么吗?

2 个答案:

答案 0 :(得分:1)

因此,该示例缺少交易流程的关键部分:执行付款。对于任何正在努力解决这个问题的人来说,这是实现这一目标的必要代码:

https://developer.paypal.com/docs/api/#execute-an-approved-paypal-payment

注意:你需要捕获$ payment-&gt; getID,就像我在数据库中那样,并发回URL PayerID。

答案 1 :(得分:0)

该示例分为两部分。第二部分是接收成功时返回的URL,并处理请求。

正如您在https://github.com/paypal/PayPal-PHP-SDK/blob/master/sample/payments/ExecutePayment.php中看到的那样,您需要使用请求中提供的ID执行付款。

根据您的使用案例,我会继续看看是否可以将该页面与此合并,以便它变得对人们显而易见。如果没有,我想在示例代码中以某种方式非常清楚,在该示例中不仅仅是那个php文件。