Paypal 贝宝RESTAPI发货地址代码点火器

Paypal 贝宝RESTAPI发货地址代码点火器,paypal,paypal-rest-sdk,Paypal,Paypal Rest Sdk,如何使用paypal REST api通过令牌获取发货地址?我发现它很有用,但我在任何地方都看不到它的使用示例。我一直在努力解决这个问题,最终找到了解决方案,所以如果有人需要,我想与大家分享 所以问题:如何使用令牌获取订单详细信息?? 添加此功能: function PPHttpPost($methodName_, $nvpStr_) { $environment = 'sandbox'; // or 'beta-sandbox' or 'live' // Set up

如何使用paypal REST api通过
令牌
获取发货地址?我发现它很有用,但我在任何地方都看不到它的使用示例。

我一直在努力解决这个问题,最终找到了解决方案,所以如果有人需要,我想与大家分享

所以问题:如何使用
令牌获取订单详细信息?

添加此功能:

function PPHttpPost($methodName_, $nvpStr_) {
      $environment = 'sandbox'; // or 'beta-sandbox' or 'live'

      // Set up your API credentials, PayPal end point, and API version.
      $API_UserName = urlencode('xxxxxxxxxx');
      $API_Password = urlencode('xxxxxxxxxx');
      $API_Signature = urlencode('xxxxxxxxxx');
      $API_Endpoint = "https://api-3t.paypal.com/nvp";
      if("sandbox" === $environment || "beta-sandbox" === $environment) {
        $API_Endpoint = "https://api-3t.$environment.paypal.com/nvp";
      }
      $version = urlencode('85.0');

      // Set the curl parameters.
      $ch = curl_init();
      curl_setopt($ch, CURLOPT_URL, $API_Endpoint);
      curl_setopt($ch, CURLOPT_VERBOSE, 1);

      // Turn off the server and peer verification (TrustManager Concept).
      curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
      curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);

      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
      curl_setopt($ch, CURLOPT_POST, 1);

      // Set the API operation, version, and API signature in the request.
      $nvpreq = "METHOD=$methodName_&VERSION=$version&PWD=$API_Password&USER=$API_UserName&SIGNATURE=$API_Signature$nvpStr_";

      // Set the request as a POST FIELD for curl.
      curl_setopt($ch, CURLOPT_POSTFIELDS, $nvpreq);

      // Get response from the server.
      $httpResponse = curl_exec($ch);

      if(!$httpResponse) {
        exit('$methodName_ failed: '.curl_error($ch).'('.curl_errno($ch).')');
      }

      // Extract the response details.
      $httpResponseAr = explode("&", $httpResponse);

      $httpParsedResponseAr = array();
      foreach ($httpResponseAr as $i => $value) {
        $tmpAr = explode("=", $value);
        if(sizeof($tmpAr) > 1) {
          $httpParsedResponseAr[$tmpAr[0]] = $tmpAr[1];
        }
      }

      if((0 == sizeof($httpParsedResponseAr)) || !array_key_exists('ACK', $httpParsedResponseAr)) {
        exit("Invalid HTTP Response for POST request($nvpreq) to $API_Endpoint.");
      }

      return $httpParsedResponseAr;
    }
只需调用该函数:

// Set request-specific fields.
$token = urlencode(htmlspecialchars($data['TOKEN'])); //$data['TOKEN'] is token
// Add request-specific fields to the request string.
$nvpStr = "&TOKEN=$token";
$httpParsedResponseAr = $this->PPHttpPost('GetExpressCheckoutDetails', $nvpStr);
print_r($httpParsedResponseAr); // will hold all details such as shipping address, country...
此外,您还可以添加检查付款是否成功:

if( "SUCCESS" == strtoupper($httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($httpParsedResponseAr["ACK"]) ) { .. }