0

Wordpress テーマに PayPal 支払いを実装しようとしています。トークンを取得し、支払いを作成し、ユーザーを承認リンクにリダイレクトし、ユーザーから承認を取得しましたが、何らかの理由で支払いを実行できません」というカール応答が空です。

これがコードです(実行URLとトークンを再確認しましたが、それらは正しいです)

if (isset($_GET['token']) && isset($_GET['PayerID']) ){
   $received_token     =   sanitize_text_field ( $_GET['token'] );
   $received_payerId   =   sanitize_text_field ( $_GET['PayerID'] );
   $execute_urls       =   get_option('paypal_processing');
   $payment_execute_url=   $execute_urls[$current_user->ID];
   $execute_urls[$current_user->ID]    =   '';
   update_option('paypal_processing',$execute_urls);

   $payment_execute = array(
    'payer_id' => $received_payerId
       );
   $json = json_encode($payment_execute);

   $json_resp = make_post_call($payment_execute_url, $json,$received_token);
   print_r($json_resp);
   echo "Payment Execute processed " . $json_resp['id'] ." with state '".    $json_resp['state']."'";
   }





 function make_post_call($url, $postdata,$token) {
    $curl = curl_init($url); 
    curl_setopt($curl, CURLOPT_POST, true);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($curl, CURLOPT_HEADER, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HTTPHEADER, array(
            'Authorization: Bearer '.$token,
            'Accept: application/json',
            'Content-Type: application/json'
            ));

    curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata); 
    #curl_setopt($curl, CURLOPT_VERBOSE, TRUE);
    $response = curl_exec( $curl );
    if (empty($response)) {
       // some kind of an error happened
           print 'curl error';
       curl_close($curl); // close cURL handler
     } else {
     $info = curl_getinfo($curl);
        //  echo "Time took: " . $info['total_time']*1000 . "ms\n";
    curl_close($curl); // close cURL handler
    if($info['http_code'] != 200 && $info['http_code'] != 201 ) {
        //echo "Received error: " . $info['http_code']. "\n";
        //echo "Raw response:".$response."\n";
        exit('paypal error');
     }
  }

     // Convert the result from JSON format to a PHP array 
    $jsonResponse = json_decode($response, TRUE);
    return $jsonResponse;
     }
4

1 に答える 1

2

承認 URL から戻ると、以前に保存されたトークンと実行 URL の情報は失われます。空になります。Cookieまたはデータベーステーブルに保存し、サイトに戻って実行するときに取得する必要があります

于 2013-10-07T03:22:51.230 に答える