如何在我的Laravel api移动应用程序中集成ccavenue支付网关

问题描述 投票:-1回答:1

如何在我的Laravel应用程序中集成ccavenue支付网关。我想在android.actually的web服务api中实现这个我想知道如何在我的android应用程序中的laravel上的移动结账页面上集成cc-avenue支付网关

laravel payment-gateway
1个回答
0
投票

安装

composer require kishanio/ccavenue

使用

use Kishnio\CCAvenue\Payment as CCAvenueClient;


$ccavenue = new CCAvenueClient( '<merchant_id>', '<working_key>', '<redirect_url>' );

// set details 
$ccavenue->setAmount( '<Amount>' );
$ccavenue->setOrderId( '<order_id>' );
$ccavenue->setBillingName( '<billing_cust_name>' );
$ccavenue->setBillingAddress( '<billing_cust_address>' );
$ccavenue->setBillingCity( '<billing_cust_city>' );
$ccavenue->setBillingZip( '<billing_cust_zip>' );
$ccavenue->setBillingState( '<billing_cust_state>' );
$ccavenue->setBillingCountry( '<billing_cust_country>' );
$ccavenue->setBillingEmail( '<billing_cust_email>' );
$ccavenue->setBillingTel( '<billing_cust_tel>' );
$ccavenue->setBillingNotes( '<billing_cust_notes>' );

// copy all the billing details to chipping details
$ccavenue->billingSameAsShipping();

// get encrpyted data to be passed
$data = $ccavenue->getEncryptedData();

// merchant id to be passed along the param
$merchant = $ccavenue->getMerchantId();

<!-- Request -->
<form method="post" name="redirect" action="http://www.ccavenue.com/shopzone/cc_details.jsp"> 
    <?php
        echo '<input type=hidden name=encRequest value="'.$data.'"">';
        echo '<input type=hidden name=Merchant_Id value="'.$merchant.'">';
    ?>
</form>

<script language='javascript'>document.redirect.submit();</script>
</body>
</html>
use Kishnio\CCAvenue\Payment as CCAvenueClient;

// Get Response
$response=$_POST["encResponse"];    

$ccavenue = new CCAvenueClient( '<merchant_id>', '<working_key>', '<redirect_url>' );

// Check if the transaction was successfull.
echo $ccavenue->response( $response );

或者你也可以使用这个包

https://github.com/softon/indipay

© www.soinside.com 2019 - 2024. All rights reserved.