xplalipay/alipay

yii2支付宝支付扩展

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

v0.1 2018-04-01 07:21 UTC

This package is not auto-updated.

Last update: 2024-09-29 05:27:46 UTC


README

yii2支付宝支付扩展

CHANGE LOG

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require xplalipay/alipay

or add

"xplalipay/alipay": "*"

to the require section of your composer.json.

Configuration

To use this extension, simply add the following code in your application configuration:

return [
    //....
    'components' => [
		'alipay'=>[
            'class'=>'xplalipay\alipay\Alipay',
            'back_url'=> '回调地址',
            'gateway_url' => 'https://openapi.alipay.com/gateway.do',
            'app_id' => 'APPID',
            'rsa_private_key' => '私钥',
            'format' => 'json',
            'charset'=>'UTF-8',
            'sign_type'=>"RSA2",
            'alipayrsa_public_key' => "公钥"
        ],
    ],
];

[获取支付密钥]

$token = \Yii::$app->alipay->sdkExecute([
                'body'=>'商品描述',
                'subject'=>'商品名称',
                'out_trade_no'=>'订单号',
                'timeout_express'=>'1h',
                'total_amount'=>'金额(元)',
                'product_code'=>'QUICK_MSECURITY_PAY',
            ]);
将获取到的密钥给客户端返回即可

[回调代码]

$resultNotify = \Yii::$app->alipay->notify();
        $result = false;
        if($resultNotify){
            $notifyData = \Yii::$app->request->post();
            $result = "回调逻辑";
        }
        if($result){
            echo 'SUCCESS';
        }else{
            echo 'ERROR';
        }