Как получить данные транзакции из PayPal («умные кнопки») с помощью Codeigniter 3? - PullRequest
1 голос
/ 22 сентября 2019

Я пытаюсь внедрить кнопки PayPal Smart, я могу произвести оплату с помощью учетных записей Sandbox и получить положительный ответ о том, что транзакция завершена, но после этого PayPal предоставил код PHP для получения сведений о транзакции.У меня есть проблема с пониманием кода, а также с тем, как его использовать.Я думаю, что это последняя часть, тогда я могу вставить детали в мою базу данных.Пожалуйста, помогите мне в этом.

<?php

 namespace Sample;

  require __DIR__ . '/vendor/autoload.php';
 //1. Import the PayPal SDK client that was created in `Set up Server-Side SDK`.
 use Sample\PayPalClient;
 use PayPalCheckoutSdk\Orders\OrdersGetRequest;

 class GetOrder
 {

    // 2. Set up your server to receive a call from the client
 /**
  *You can use this function to retrieve an order by passing order ID as an argument.
  */
  public static function getOrder($orderId)
{

// 3. Call PayPal to get the transaction details
$client = PayPalClient::client();
$response = $client->execute(new OrdersGetRequest($orderId));
/**
 *Enable the following line to print complete response as JSON.
 */
//print json_encode($response->result);
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";
}
   // 4. Save the transaction in your database. Implement logic to save transaction to your database 
for future reference.
print "Gross Amount: {$response->result->purchase_units[0]->amount->currency_code} {$response->result->purchase_units[0]->amount->value}\n";

// To print the whole response body, uncomment the following line
// echo json_encode($response->result, JSON_PRETTY_PRINT);
 }
 }

   /**
  *This driver function invokes the getOrder function to retrieve
    *sample order details.
    *
   *To get the correct order ID, this sample uses createOrder to create a new order
   *and then uses the newly-created order ID with GetOrder.
 */
 if (!count(debug_backtrace()))
 {
   GetOrder::getOrder('REPLACE-WITH-ORDER-ID', true);
  }
  ?>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...