亚洲国产精品成人无码区,公天天吃我奶躁我的比视频,亚洲国产欧美视频亚洲国产精品一区二区成人片不卡,天天躁日日躁狠狠躁视频2021,起视碰看97视频在线少妇久久久久久人妻无码, 芒果乱码一线二线三线新区 ,亚洲熟妇无码AⅤ不卡在线播放,人妻少妇乱子伦无码专区

400-800-9385
網(wǎng)站建設(shè)資訊詳細(xì)

境外支付接口strip如何對(duì)接

發(fā)表日期:2023-11-16 13:55:19   作者來(lái)源:劉紅旺   瀏覽:1413   標(biāo)簽:    
以下是一個(gè)使用 PHP 的 Stripe 支付接口示例,用于創(chuàng)建一個(gè)簡(jiǎn)單的支付表單并處理支付請(qǐng)求:
 
 
以上示例代碼假設(shè)您已經(jīng)設(shè)置了 Stripe 的 API 密鑰,并使用 Composer 安裝了 Stripe PHP SDK。
 
請(qǐng)注意,在 `data-key` 屬性中替換為您的 Stripe 公鑰,并在 `setApiKey` 函數(shù)中替換為您的 Stripe 私鑰。此外,您還可以根據(jù)您的需求自定義表單字段和錯(cuò)誤處理邏輯。
1.設(shè)置支付參數(shù) 
    use Stripe;
 
public function _initialize()
    {
        parent::_initialize();
        $PaymentModel = new PaymentModel();
        $config = $PaymentModel->getCacheClass('stripe');
        if(empty($config)) {
            echo '支付參數(shù)未配置!';
            exit();
        } else {
            $this->clientId = $config['app_id'];
            $this->clientSecret = $config['app_key'];
        }
       
        $request = Request::instance();
        $base_url = $request->domain();
        $this->accept_url = $base_url.'/home/paypal/callback';
       
       
        //如果是沙盒測(cè)試環(huán)境不設(shè)置,請(qǐng)注釋掉
        // $this->PayPal->setConfig(
        //     array(
        //         'mode' => 'live',
        //     )
        // );
    }
2. 創(chuàng)建訂單  function create (){
     
        \Stripe\Stripe::setApiKey($this->clientSecret);//私鑰
        try {
            $jsonStr = file_get_contents('php://input');
            $jsonObj = json_decode($jsonStr);//獲取頁(yè)面參數(shù)
            $arr=object_array($jsonObj);//轉(zhuǎn)換為數(shù)組
            $order_id=$arr['items'][0]['order_id'];//訂單單號(hào)
            $order = db('order')->where('order_id', $order_id)->find();//查找訂單
            //訂單是否存在和支付狀態(tài)
            if(empty($order)) {
                echo "can't find order!";
                exit();
            }
             if($order['pay_status'] == 20) {
                echo  'The order was paid!';
                exit();
            }
           
            $request = Request::instance();
            $base_url = $request->domain();//獲取網(wǎng)址
            $time=time();
            //判斷支付訂單是不是已經(jīng)生成
            if(!$order['stripe_pay'] || $time-$order['stripe_time']>30*60){
                $currency_list = ExchangeRateModel::getFront();
                $currency = $currency_list['code'];
                $total_amount_currency =  $order['pay_price'];
                $paymentIntent = \Stripe\PaymentIntent::create([
                    'amount' =>  $total_amount_currency*100,//訂單金額
                    'currency' => $currency,
                    'automatic_payment_methods' => [
                        'enabled' => true,
                    ],
                ]);
                $output = [
                    'clientSecret' => $paymentIntent->client_secret,
                ];
                 
                $transaction=explode('_secret_',$paymentIntent->client_secret);
                $transaction_id=$transaction[0];
                db('order')->where('order_id',$order_id)->update(['stripe_pay' => $paymentIntent->client_secret,'stripe_time'=>$time,'transaction_id'=>$transaction_id]);
            }else{
                $output = [
                    'clientSecret' => $order['stripe_pay'],
                ];
 
            }
            // Create a PaymentIntent with amount and currency
       
         
            echo json_encode($output);
        } catch (Error $e) {
            http_response_code(500);
            echo json_encode(['error' => $e->getMessage()]);
        }
    }
 
 
3. 前端創(chuàng)建訂單成功會(huì)返回一個(gè)訂單key
需要引入官方j(luò)s
 
 
 
4. 回調(diào)endpoint_secret: 在Webhook設(shè)置 回調(diào)的secret
 
 public function callback()
    {
        $endpoint_secret = 'xxxxxxxxxxxxxx';
       
        $payload = @file_get_contents('php://input');
        $sig_header = $_SERVER['HTTP_STRIPE_SIGNATURE'];
        $event = null;
       
        if( $payload){
        try {
         
            $event = \Stripe\Webhook::constructEvent(
                $payload, $sig_header, $endpoint_secret
              );
        }catch(\Stripe\Exception\SignatureVerificationException $e) {
            // Invalid signature
            http_response_code(400);
            exit();
          }
        }
        $log_name = "notify_url.log";
        $this->log_result($log_name, 'pay-start|--'.$event->data->object->paymentIntent.'--|');
 
        // Handle the event
        switch ($event->type) {
            case 'charge.succeeded':
                $paymentIntent = $event->data->object;
                //$payment=json_decode($paymentIntent);
                $payID=$paymentIntent->payment_intent;
                $order_no=db('order')->where('transaction_id',$payID)->value('order_no');
                try {
                    $total_money =  $event->amount/100;
                    // 實(shí)例化訂單模型
                    $model = $this->getOrderModel($order_no, 10);
                    // 訂單信息
                    $order = $model->getOrderInfo();
                    if(empty($order)){
                       echo 'Order not exist';
                    }
                    $update_data['transaction_id'] = $payID;
                    $status = $model->onPaySuccess(20, $update_data);
                    $this->log_result($log_name, 'order_no:'.$order_no.'pay|--'.   $paymentIntent->payment_intent.'--|'.'status:'.$status);
                    if ($status == false) {
                        echo $model->getError();
                    }
                } catch (Exception $e) {
                    $this->error('Pay Error!', 'home/member/order');
                   
                    //echo $e . ',支付失敗,支付ID【' . $paymentId . '】,支付人ID【' . $PayerID . '】';
                    //exit();
                }
               
               
                break;
            case 'charge.attached':
                $paymentMethod = $event->data->object;
                $this->log_result($log_name, 'pay-attached|--'.$event->type.'--|');
                break;
            // ... handle other event types
            default:
            $this->log_result($log_name, 'pay-fail|--'.$event->type.'--|');
            echo 'Received unknown event type '.$event->type ;
        }
   
       
 
    }
 
 
 
請(qǐng)確保將上述代碼與 Stripe 的最新版本和最佳實(shí)踐相匹配,并根據(jù)您的情況進(jìn)行自定義和測(cè)試。以確保支付交互的安全性和正確性。
 
如沒(méi)特殊注明,文章均為方維網(wǎng)絡(luò)原創(chuàng),轉(zhuǎn)載請(qǐng)注明來(lái)自http://m.oulysa.com/news/6917.html
亚洲日韩Av中文字幕无码| 国产91一区二区在线播放不卡| 99精品一区二区三区无码吞精| 久久久久久久久毛片精品| 一本大道久久a久久精品综合1| 国产l精品国产亚洲区在线观看| 亚洲乱码日产精品一二三| 韩日午夜在线资源一区二区| 最近更新免费中文字幕大全| 日韩视频中文字幕精品偷拍| 国产日产欧洲自拍| 亚洲人成色77777| 国产成人精品手机在线观看| 精品无码一区二区三区AV| 国内精品免费视频精选在线观看| 性XXXX欧美老妇胖老太性多毛| 日本精品一区二区在线观看| 国产片AV不卡在线观看| 国产精品无码免费专区午| 桃花视频www欧美日韩内射| 久久综合久久美利坚合众国| 久久精品国产亚洲AV无码偷窥| 国产乱子伦精品免费无码专区| 亚洲国产综合精品中文字幕| 亚洲天堂在线观看视频网站| 久久精品天然东京热欧美自拍嘿咻内射在线观看| 一级三级视频在线观看| 色偷偷888欧美精品久久久| 日韩中文无线码免费av| 亚洲欧美一级久久精品| 制服丝袜中文字幕无码专区| 一本国产高清一卡免费视频| a级情欲片在线观看| 91免费视频APP黄| 国精品无码A区一区| 在线观看91精品国产麻豆蜜桃| 国产成人无码一区二区三区在线| 国产99久久亚洲综合精品| 午夜成人理论无码电影在线播放| 久久精品国产亚洲AV高清热| 婷婷婷国产在线视频|