string(287) "HTTP/1.1 400 Bad Request Ser-6ren">
gpt4 book ai didi

php - Paypal Rest API 错误

转载 作者:太空宇宙 更新时间:2023-11-03 15:52:22 25 4
gpt4 key购买 nike

当我尝试通过 paypal 沙盒提交测试付款时,我收到了这个响应:

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"
}
]
}
}
]

这是我的 Paypal 代码:

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);
}
}

最佳答案

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

“交易”:[ { “数量”:{ ... } ]

代替

参见 https://developer.paypal.com/webapps/developer/docs/api/#create-a-payment更多

关于php - Paypal Rest API 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19296482/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com