Хорошо, это будет вопрос из двух частей, потому что я не знаю, какая часть вызывает проблему.
Вопрос 1. Я думаю, что моя проблема может быть связана с тем, как я настроил среду PayPal Checkout SDK.Вот ссылка на учебник, за которым я следую https://developer.paypal.com/docs/checkout/reference/server-integration/setup-sdk/ Я не уверен, где разместить заголовки HTTP-запросов на другой странице или на странице конфигурации среды, или они мне вообще нужны?Или, если мне вообще нужно настроить заголовки или разместить их как есть?
Вот мои заголовки HTTP-запросов
$request = new OrdersCreateRequest();
$request->headers["prefer"] = "return=representation";
Вот моя конфигурация среды
namespace Sample;
use PayPalCheckoutSdk\Core\PayPalHttpClient;
use PayPalCheckoutSdk\Core\SandboxEnvironment;
ini_set('error_reporting', E_ALL); // or error_reporting(E_ALL);
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
class PayPalClient
{
/**
* Returns PayPal HTTP client instance with environment that has access
* credentials context. Use this instance to invoke PayPal APIs, provided the
* credentials have access.
*/
public static function client()
{
return new PayPalHttpClient(self::environment());
}
/**
* Set up and return PayPal PHP SDK environment with PayPal access credentials.
* This sample uses SandboxEnvironment. In production, use ProductionEnvironment.
*/
public static function environment()
{
$clientId = getenv("CLIENT_ID") ?: "Aa2IfcoEvHnfJRnVQLSFrSs3SmTTkv5N1weMEL66ysqYIeHfAqXpDVkjOv3vLhkhbP4eKB6MpRlQIcJw";
$clientSecret = getenv("CLIENT_SECRET") ?: "EF6l6PDQJEZbdKTeg35pbBSft6WRdALQC3Xrl5vvG0VNgBUehQyTCQ09QdIauxoccvJOf5Aoy-OGsH5G";
return new SandboxEnvironment($clientId, $clientSecret);
}
}
Вопрос 2. Я пытался обновить транзакцию, которую пользователь разместит с помощью PayPal Checkout.Вот ссылка на учебник, которому я следую https://developer.paypal.com/docs/checkout/integration-features/update-order-details/
Я получаю следующую ошибку:
( ! ) Fatal error: Class 'Sample\CreateOrder' not found on line 78
Ошибка найдена в строке 78, которая является частьюкод найден ниже.
$createdOrder = CreateOrder::createOrder(true)->result;
Вот полный код.
namespace Sample;
require __DIR__ . '/vendor/autoload.php';
//1. Import the PayPal SDK client that was created in `Set up the Server SDK`.
use Sample\PayPalClient;
use PayPalCheckoutSdk\Orders\OrdersPatchRequest;
use PayPalCheckoutSdk\Orders\OrdersGetRequest;
class PatchOrder
{
// 2. Set up your server to receive a call from the client
public static function patchOrder($orderId)
{
// 3. Call PayPal to patch the transaction details
$client = PayPalClient::client();
$request = new OrdersPatchRequest($orderId);
$request->body = PatchOrder::buildRequestBody();
$client->execute($request);
$response = $client->execute(new OrdersGetRequest($orderId));
print "Status Code: {$response->statusCode}\n";
print "Status: {$response->result->status}\n";
print "Order ID: {$response->result->id}\n";
print "Intent: {$response->result->intent}\n";
print "Links:\n";
foreach($response->result->links as $link)
{
print "\t{$link->rel}: {$link->href}\tCall Type: {$link->method}\n";
}
print "Gross Amount: {$response->result->purchase_units[0]->amount->currency_code} {$response->result->purchase_units[0]->amount->value}\n";
// To toggle printing the whole response body comment/uncomment below line
echo json_encode($response->result, JSON_PRETTY_PRINT), "\n";
}
/*
*
* Build sample PATCH request
*/
private static function buildRequestBody()
{
return array (
0 =>
array (
'op' => 'replace',
'path' => '/intent',
'value' => 'CAPTURE',
),
1 =>
array (
'op' => 'replace',
'path' => '/purchase_units/@reference_id==\'PUHF\'/amount',
'value' =>
array (
'currency_code' => 'USD',
'value' => '200.00',
'breakdown' =>
array (
'item_total' =>
array (
'currency_code' => 'USD',
'value' => '180.00',
),
'tax_total' =>
array (
'currency_code' => 'USD',
'value' => '20.00',
),
),
),
),
);
}
}
if (!count(debug_backtrace()))
{
print "Before PATCH:\n";
$createdOrder = CreateOrder::createOrder(true)->result;
print "\nAfter PATCH (Changed Intent and Amount):\n";
PatchOrder::patchOrder($createdOrder->id);
}