簡體   English   中英

Paypal與Laravel 5.1集成

[英]Paypal integration with Laravel 5.1

我正在嘗試將支付網關(paypal)與laravel 5.1集成。 我找到了laravel 4的一些解決方案,但沒有找到laravel 5.0及更高版本的解決方案。

我一直在遵循此鏈接中提到的所有步驟。 xroot / laravel-paypalpayment

但是我在PaypalPaymentController.php第10行中收到FatalErrorException:

我已附上我的Paypal集成代碼和錯誤的屏幕截圖。

Router.php

resource('payment','PaymentController');

app.php

Anouar\Paypalpayment\PaypalpaymentServiceProvider::class,
'Paypalpayment'   => Anouar\Paypalpayment\Facades\PaypalPayment::class,

PaypalPaymentController.php

    <?php
namespace my_app\Http\Controllers;
use Illuminate\Support\Facades\Cache;
use Illuminate\Http\Request;
use my_app\Http\Requests;
use my_app\Http\Controllers\Controller;
use Paypalpayment;
    class PaypalPaymentController extends Facades {
    private $_apiContext;
    private $_ClientId=''/* ... */;
    private $_ClientSecret=''/* ... */;

    public function __construct(){
        // ### Api Context
        // Pass in a `ApiContext` object to authenticate 
        // the call. You can also send a unique request id 
        // (that ensures idempotency). The SDK generates
        // a request id if you do not pass one explicitly. 
        $this->_apiContext = Paypalpayment:: ApiContext(
                Paypalpayment::OAuthTokenCredential(
                    $this->_ClientId,
                    $this->_ClientSecret
                )
        );
        // dynamic configuration instead of using sdk_config.ini
        $this->_apiContext->setConfig(array(
            'mode' => 'sandbox',
            'http.ConnectionTimeOut' => 30,
            'log.LogEnabled' => true,
            'log.FileName' => __DIR__.'/../PayPal.log',
            'log.LogLevel' => 'FINE'
        ));
    }
    /*
     * Create payment using credit card
     * url:payment/create
    */
    public function create(){
        // ### Address
        // Base Address object used as shipping or billing
        // address in a payment. [Optional]
        $addr= Paypalpayment::Address();
        $addr->setLine1(/* ... */);
        $addr->setLine2(/* ... */);
        $addr->setCity(/* ... */);
        $addr->setState(/* ... */);
        $addr->setPostal_code(/* ... */);
        $addr->setCountry_code(/* ... */);
        $addr->setPhone(/* ... */);
        // ### CreditCard
        // A resource representing a credit card that can be
        // used to fund a payment.
        $card = Paypalpayment::CreditCard();
        $card->setType(/* ... */);
        $card->setNumber(/* ... */);
        $card->setExpire_month(/* ... */);
        $card->setExpire_year(/* ... */);
        $card->setCvv2(/* ... */);
        $card->setFirst_name(/* ... */);
        $card->setLast_name(/* ... */);
        $card->setBilling_address($addr);
        // ### FundingInstrument
        // A resource representing a Payer's funding instrument.
        // Use a Payer ID (A unique identifier of the payer generated
        // and provided by the facilitator. This is required when
        // creating or using a tokenized funding instrument)
        // and the `CreditCardDetails`
        $fi = Paypalpayment::FundingInstrument();
        $fi->setCredit_card($card);
        // ### Payer
        // A resource representing a Payer that funds a payment
        // Use the List of `FundingInstrument` and the Payment Method
        // as 'credit_card'
        $payer = Paypalpayment::Payer();
        $payer->setPayment_method("credit_card");
        $payer->setFunding_instruments(array($fi));
        // ### Amount
        // Let's you specify a payment amount.
        $amount = Paypalpayment:: Amount();
        $amount->setCurrency("USD");
        $amount->setTotal("1.00");
        // ### Transaction
        // A transaction defines the contract of a
        // payment - what is the payment for and who
        // is fulfilling it. Transaction is created with
        // a `Payee` and `Amount` types
        $transaction = Paypalpayment:: Transaction();
        $transaction->setAmount($amount);
        $transaction->setDescription("This is the payment description.");
        // ### Payment
        // A Payment Resource; create one using
        // the above types and intent as 'sale'
        $payment = Paypalpayment:: Payment();
        $payment->setIntent("sale");
        $payment->setPayer($payer);
        $payment->setTransactions(array($transaction));
        // ### Create Payment
        // Create a payment by posting to the APIService
        // using a valid ApiContext
        // The return object contains the status;
        try {
            $payment->create($this->_apiContext);
        } catch (\PPConnectionException $ex) {
            return "Exception: " . $ex->getMessage() . PHP_EOL;
            var_dump($ex->getData());
            exit(1);
        }
        $response=$payment->toArray();

        echo"<pre>";
        print_r($response);
        //var_dump($payment->getId());
        //print_r($payment->toArray());//$payment->toJson();
    }  
    /*
        Use this call to get a list of payments. 
        url:payment/
    */
    public function index(){
        echo "<pre>";
        $payments = Paypalpayment::all(array('count' => 1, 'start_index' => 0),$this->_apiContext);
         print_r($payments);
    }
}

我得到的錯誤: 在此處輸入圖片說明

我不知道您的代碼庫,但是如果您的類是控制器,為什么還要擴展Facades類? 問題是您的代碼正在my_app\\Http\\Controllers命名空間中尋找Facades類。

刪除該行或正確導入該類將解決您的問題。 但是,我認為您可能需要在這里重新考慮您的設計。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM