1

当我尝试通过贝宝沙箱提交测试付款时,我收到了以下回复:

array(2) { ["header"]=> string(287) "HTTP/1.1 400 Bad Request Server: Apache-Coyote/1.1 PayPal-Debug-Id: b235ca4e7c1ed Content-Type: application/json Content-Length: 334 DC: origin1-api.sandbox.paypal.com Date: Thu, 10 Oct 2013 17:23:54 GMT Connection: close Set-Cookie: DC=origin1-api.sandbox.paypal.com; secure " ["body"]=> object(stdClass)#4 (5) { ["name"]=> string(16) "VALIDATION_ERROR" ["details"]=> array(1) { [0]=> object(stdClass)#5 (2) { ["field"]=> string(12) "transactions" ["issue"]=> string(95) "Item amount must add up to specified amount subtotal (or total if amount details not specified)" } } ["message"]=> string(29) "Invalid request - see details" ["information_link"]=> string(73) "https://developer.paypal.com/webapps/developer/docs/api/#VALIDATION_ERROR" ["debug_id"]=> string(13) "b235ca4e7c1ed" } }

这个错误表明我的项目总数没有加到我的小计中,但很明显,正如您从下面的 json 中看到的那样:

{
"intent": "sale",
"redirect_urls": {
    "return_url": "http://test.example.com/",
    "cancel_url": "http://www.example.com/cart"
},
"payer": {
    "payment_method": "paypal"
},
"transactions": [
    {
        "amount": {
            "total": "904.75",
            "currency": "USD",
            "details": {
                "subtotal": "889.80",
                "shipping": "14.95"
            }
        },
        "description": "Order ID #9",
        "item_list": {
            "items": [
                {
                    "quantity": "1",
                    "name": "40 Steps and a View-20\" x 24\" - 1.5\" thick gallery wrap canvas",
                    "price": "204.95",
                    "currency": "USD",
                    "sku": "7 - 10"
                },
                {
                    "quantity": "1",
                    "name": "Emerald Bay-24\" x 36\" - 0.75\" thin gallery wrap canvas",
                    "price": "219.95",
                    "currency": "USD",
                    "sku": "8 - 5"
                },
                {
                    "quantity": "1",
                    "name": "Life on the Beach-36\" x 48\" - 0.75\" thin gallery wrap canvas",
                    "price": "299.95",
                    "currency": "USD",
                    "sku": "2 - 6"
                },
                {
                    "quantity": "1",
                    "name": "View from the Mountain Tops-16\" x 20\" - 0.75\" thin gallery wrap canvas",
                    "price": "167.95",
                    "currency": "USD",
                    "sku": "5 - 3"
                }
            ]
        }
    }
]

}

这是我的贝宝代码:

class paypal {
    private $access_token;
    private $token_type;

    /**
    * Constructor
    *
    * Handles oauth 2 bearer token fetch
    * @link https://developer.paypal.com/webapps/developer/docs/api/#authentication--headers
    */
    public function __construct(){
        $postvals = "grant_type=client_credentials";
        $uri = PAYMENT_URI . "v1/oauth2/token";

        $auth_response = self::curl($uri, 'POST', $postvals, true);
        $this->access_token = $auth_response['body']->access_token;
        $this->token_type = $auth_response['body']->token_type;
    }

    /**
    * cURL
    *
    * Handles GET / POST requests for auth requests
    * @link http://php.net/manual/en/book.curl.php
    */
    private function curl($url, $method = 'GET', $postvals = null, $auth = false){
        $ch = curl_init($url);

        //if we are sending request to obtain bearer token
        if ($auth){
            $headers = array("Accept: application/json", "Accept-Language: en_US");
            curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
            curl_setopt($ch, CURLOPT_USERPWD, CLIENT_ID . ":" .CLIENT_SECRET);
            curl_setopt($ch, CURLOPT_SSLVERSION, 3);
            curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
            curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
        //if we are sending request with the bearer token for protected resources
        } else {
            $headers = array("Content-Type:application/json", "Authorization:{$this->token_type} {$this->access_token}");
        }

        $options = array(
            CURLOPT_HEADER => true,
            CURLINFO_HEADER_OUT => true,
            CURLOPT_HTTPHEADER => $headers,
            CURLOPT_RETURNTRANSFER => true,
            CURLOPT_VERBOSE => true,
            CURLOPT_TIMEOUT => 10
        );

        if ($method == 'POST'){
            $options[CURLOPT_POSTFIELDS] = $postvals;
            $options[CURLOPT_CUSTOMREQUEST] = $method;
        }

        curl_setopt_array($ch, $options);

        $response = curl_exec($ch);
        $header = substr($response, 0, curl_getinfo($ch,CURLINFO_HEADER_SIZE));
        $body = json_decode(substr($response, curl_getinfo($ch,CURLINFO_HEADER_SIZE)));
        curl_close($ch);

        return array('header' => $header, 'body' => $body);
    }

    // Function for Processing Payment
    function process_payment($request) {
        $postvals = $request;
        $uri = PAYMENT_URI . "v1/payments/payment";
        return $this->curl($uri, 'POST', $postvals);
    }
}
4

3 回答 3

2
  'transactions' => array(
        0 => array(
          'amount' => array(
              'total' =>''.number_format($order_total,2).'',
              .....
           ),               
           'description' =>'Mike and Maureen Photography - Order ID #'.$order_id.''
        )
    ),
于 2013-10-10T17:24:37.083 回答
2

Transactions 是一个数组,但您传入的是一个对象。你应该发送

“交易”:[ { “金额”:{ ... } ]

反而

有关更多信息,请参阅https://developer.paypal.com/webapps/developer/docs/api/#create-a-payment

于 2013-10-10T14:30:41.073 回答
1

您正在尝试自己打开套接字,因此您需要自己添加 HTTP Host 标头

$header .= "Host: www.sandbox.paypal.com\r\n";

来源:PayPal IPN 错误请求 400 错误

于 2013-10-10T14:02:26.330 回答