CCAvenue Android Integration
I am integrating CCAvenue to my android app and I am doing Non-seamless integration. My merchant server is php and I am making my httppost to the GetRSA.php file kept in my merchant server. The code I am using is as below List<NameValuePair> httpParams = new ArrayList<NameValuePair>(); httpParams.add(new BasicNameValuePair("access_code", intent.getStringExtra("access_code"))); httpParams.add(new BasicNameValuePair("order_id", intent.getStringExtra("order_id"))); String vResponse = sh.makeServiceCall(intent.getStringExtra(RSA_KEY_URL), ServiceHandler.POST, httpParams); The access code, order id