3
votes

I want to integrate the ccavenue payment gateway into my rails app give some guide line for how to implement the gateway

I had tried Activemerchant_ccavenue but don't get success ..... sample example with integration is appreciated

2

2 Answers

1
votes

Example Usage is given on the readme page itself: create an initializer, like initializers/payment.rb. Add the following lines:

  ActiveMerchant::Billing::Integrations::Ccavenue.setup do |cca|
    cca.merchant_id = M_blahpache_5678 #your CCAvenue merchant id from the working key generation page
    cca.work_key = 6abc0ty90e0v7jk9hj #your CCAvenue working key
  end
  CCAVENUE_ACCOUNT = 'youraccountname'

CCAvenue integration for ActiveMerchant - README

so what all have you tried? What errors you get?