paypal支付接口准备工作
至此准备工作差不多了,开始动代码。
PayPal-PHP-SDK下载
- 通过composer(composer安装教程)下载PayPal-PHP-SDK,具体的composer.json如下:
{
"require" : {
"paypal/rest-api-sdk-php" : "1.7.4"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
}
}
- 切换至项目目录并执行
composer install
,PayPal-PHP-SDK安装完毕。 - 因为PayPal-PHP-SDK里面的composer.json里面的require有psr/log,所以在在目录vendor下有三个文件夹:composer,paypal和psr。
- 此时项目的目录结构如下,其中的app文件夹是下面实例化创建的文件夹。

PayPal-PHP-SDK支付接口测试
然后就简单了,PayPal-PHP-SDK里面有一个sample项目,里面有各种实例。
打开浏览器,输入http://~/rest-api-sdk-php/sample/index.php,“~”符号改为你自己的路径。
可以看到sample了,如下图:
图中的PayPal Payments - similar to Express Checkout in Classic APIs即为支付接口,对应的代码路径为~/rest-api-sdk-php/sample/payments/CreatePaymentUsingPayPal.php。
PayPal Payments的逻辑大致如下:
- 创建一个支付,发送到paypal服务端
- paypal服务端返回一个用户授权地址
- 转链到用户授权地址,用户授权
- 用户授权完毕,paypal返回到客户端设置的execute地址,付款实现。
实现如下:
~/rest-api-sdk-php/sample/payments/CreatePaymentUsingPayPal.php有如下代码
$approvalUrl = $payment->getApprovalLink();
ResultPrinter::printResult("Created Payment Using PayPal. Please visit the URL to Approve.".$approvalUrl, "Payment", "<a href='$approvalUrl' >$approvalUrl</a>", $request, $payment);
点击
页面执行完毕,既看到paypal服务端返回的授权地址
转链到授权地址
用户登录授权之后
点击继续,返回用户设置的execute地址
至此,PayPal-PHP-SDK支付接口sample支付过程完毕。
支付接口实例化
在项目根目录创建app文件夹,创建几个必须的文件如下:
其中:
- payment.php,创建支付
- exec.php,执行支付,用户授权返回地址
- cancel.php,用户取消支付
- common.php,公共文件
payment.php文件
<?php
require_once('./common.php');
use PayPal\Api\Amount;
use PayPal\Api\Details;
use PayPal\Api\Item;
use PayPal\Api\ItemList;
use PayPal\Api\Payer;
use PayPal\Api\Payment;
use PayPal\Api\RedirectUrls;
use PayPal\Api\Transaction;
use PayPal\Api\ShippingAddress;
$payer = new Payer();
$payer->setPaymentMethod("paypal");
$shipping = 15;
$tax = 10;
$quantity = 4;
$price = 30;
$subtotal = $quantity * $price;
$total = $subtotal + $shipping + $tax;
$item1 = new Item();
$item1->setName('test pro 1')
->setCurrency('USD')
->setQuantity($quantity)
->setSku("testpro1_01")
->setPrice($price);
$itemList = new ItemList();
$itemList->setItems(array($item1));
$address = new ShippingAddress();
$address->setRecipientName('什么名字')
->setLine1('什么街什么路什么小区')
->setLine2('什么单元什么号')
->setCity('城市名')
->setState('浙江省')
->setPhone('12345678911')
->setPostalCode('12345')
->setCountryCode('CN');
$itemList->setShippingAddress($address);
$details = new Details();
$details->setShipping($shipping)
->setTax($tax)
->setSubtotal($subtotal);
$amount = new Amount();
$amount->setCurrency("USD")
->setTotal($total)
->setDetails($details);
$transaction = new Transaction();
$transaction->setAmount($amount)
->setItemList($itemList)
->setDescription("Payment description")
->setInvoiceNumber(uniqid());
$baseUrl = getBaseUrl();
$redirectUrls = new RedirectUrls();
$redirectUrls->setReturnUrl("$baseUrl/exec.php?success=true&subtotal=$subtotal&total=$total&shipping=$shipping&tax=$tax")
->setCancelUrl("$baseUrl/cancel.php?success=false");
$payment = new Payment();
$payment->setIntent("sale")
->setPayer($payer)
->setRedirectUrls($redirectUrls)
->setTransactions(array($transaction));
$payment->create($apiContext);
$approvalUrl = $payment->getApprovalLink();
dump($approvalUrl);
exec.php文件
<?php
// +----------------------------------------------------------------------
// | Perfect Is Shit
// +----------------------------------------------------------------------
// | 执行支付DEMO
// +----------------------------------------------------------------------
// | Author: alexander <gt199899@gmail.com>
// +----------------------------------------------------------------------
// | Datetime: 2016-07-28 11:53:10
// +----------------------------------------------------------------------
// | Copyright: Perfect Is Shit
// +----------------------------------------------------------------------
set_time_limit(3600);
require_once('./common.php');
use PayPal\Api\Amount;
use PayPal\Api\Details;
use PayPal\Api\ExecutePayment;
use PayPal\Api\Payment;
use PayPal\Api\PaymentExecution;
use PayPal\Api\Transaction;
// ### Approval Status
// Determine if the user approved the payment or not
if (isset($_GET['success']) && $_GET['success'] == 'true' && isset($_GET['shipping']) && isset($_GET['tax']) && isset($_GET['subtotal']) && isset($_GET['total'])) {
//接收参数
$shipping = $_GET['shipping'];//运费
$tax = $_GET['tax'];//税费
$subtotal = $_GET['subtotal'];//商品总价
$total = $_GET['total'];//总费用
// Get the payment Object by passing paymentId
// payment id was previously stored in session in
// CreatePaymentUsingPayPal.php
$paymentId = $_GET['paymentId'];
$payment = Payment::get($paymentId, $apiContext);
// ### Payment Execute
// PaymentExecution object includes information necessary
// to execute a PayPal account payment.
// The payer_id is added to the request query parameters
// when the user is redirected from paypal back to your site
$execution = new PaymentExecution();
$execution->setPayerId($_GET['PayerID']);
// ### Optional Changes to Amount
// If you wish to update the amount that you wish to charge the customer,
// based on the shipping address or any other reason, you could
// do that by passing the transaction object with just `amount` field in it.
// Here is the example on how we changed the shipping to $1 more than before.
$transaction = new Transaction();
$amount = new Amount();
$details = new Details();
$details->setShipping($shipping)//运费
->setTax($tax)//税费
->setSubtotal($subtotal);//金额
$amount->setCurrency('USD');
$amount->setTotal($total);
$amount->setDetails($details);
$transaction->setAmount($amount);
// Add the above transaction object inside our Execution object.
$execution->addTransaction($transaction);
header("Content-type: text/html; charset=utf-8");
try {
// Execute the payment
$result = $payment->execute($execution, $apiContext);
echo "支付成功";
// 账单唯一交易号,paypal账户交易记录里面的标示
$data['tradeId'] = '账单唯一交易号:'.$result->transactions[0]->related_resources[0]->sale->id;
// 账单号,paypal账户交易记录里面的标示
$data['billId'] = '账单号:'.$result->transactions[0]->invoice_number;
// payid,接口查询使用的账单id
$data['payId'] = 'payid:'.$result->id;
echo "<pre>";
var_dump($data);
} catch (Exception $ex) {
echo "支付失败";
exit(1);
}
return $payment;
} else {
echo "PayPal返回回调地址参数错误";
}
cancel.php文件
<?php
echo "用户取消支付";
common.php文件
<?php
require_once('../vendor/autoload.php');
use PayPal\Rest\ApiContext;
use PayPal\Auth\OAuthTokenCredential;
$clientId = '';
$clientSecret = '';
$apiContext = new ApiContext(
new OAuthTokenCredential(
$clientId,
$clientSecret
)
);
$apiContext->setConfig(
array(
'mode' => 'sandbox',
'log.LogEnabled' => true,
'log.FileName' => '../PayPal.log',
'log.LogLevel' => 'DEBUG',
'cache.enabled' => true,
)
);
function dump($var, $echo=true, $label=null, $strict=true) {
$label = ($label === null) ? '' : rtrim($label) . ' ';
if (!$strict) {
if (ini_get('html_errors')) {
$output = print_r($var, true);
$output = "<pre>" . $label . htmlspecialchars($output, ENT_QUOTES) . "</pre>";
} else {
$output = $label . print_r($var, true);
}
} else {
ob_start();
var_dump($var);
$output = ob_get_clean();
if (!extension_loaded('xdebug')) {
$output = preg_replace("/\]\=\>\n(\s+)/m", "] => ", $output);
$output = '<pre>' . $label . htmlspecialchars($output, ENT_QUOTES) . '</pre>';
}
}
if ($echo) {
echo($output);
return null;
}else
return $output;
}
function getBaseUrl()
{
if (PHP_SAPI == 'cli') {
$trace=debug_backtrace();
$relativePath = substr(dirname($trace[0]['file']), strlen(dirname(dirname(__FILE__))));
echo "Warning: This sample may require a server to handle return URL. Cannot execute in command line. Defaulting URL to http://localhost$relativePath \n";
return "http://localhost" . $relativePath;
}
$protocol = 'http';
if ($_SERVER['SERVER_PORT'] == 443 || (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on')) {
$protocol .= 's';
}
$host = $_SERVER['HTTP_HOST'];
$request = $_SERVER['PHP_SELF'];
return dirname($protocol . '://' . $host . $request);
}
支付接口实例测试
执行payment.php文件,得到授权地址,如下:
转链到用户授权地址
用户登录授权,可以看到在我们设置过收货地址之后,支付收货地址是默认无法更改的。
用户点击继续,会转链到我们的支付成功回调地址exec.php。
用户点击取消并返回,会转链到我们的支付失败回调地址cancel.php
支付过后可进入sandbox账号中心查看是否有交易。
https://www.sandbox.paypal.com