简体   繁体   中英

CCAvenue Payment Gateway in Flutter?

I need to do the payment gateway integration for ccAvenue. Flutter has the dependency of Razorpay, Paytm etc. But it has no dependency on ccAvenue. How to open ccAvenue gateway for my flutter application. Can any one suggest me the steps to proceed this?

You can try using this package cc_avenue

CcAvenue.cCAvenueInit(
    transUrl: 'https://secure.ccavenue.com/transaction/initTrans',
    accessCode: '4YRUXLSRO20O8NIH',
    amount: '10',
    cancelUrl: 'http://122.182.6.216/merchant/ccavResponseHandler.jsp',
    currencyType: 'INR',
    merchantId: '2',
    orderId: '519',
    redirectUrl: 'http://122.182.6.216/merchant/ccavResponseHandler.jsp',
    rsaKeyUrl: 'https://secure.ccavenue.com/transaction/jsp/GetRSA.jsp'
  );

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM