Ich bin neu in Android und integrieren PayU-Geld als Zahlungs-Gateway, aber nicht in der Lage, Erfolg zu bekommen. Ich benutze eine Probe PayU Demo von Github und es läuft gut. Aber wie ichAndroid - Wie kaufe ich Produktionsschlüssel für Pay-A
geändertString merchantProductionKeys[] = {"Sskq6q", "smsplus"};
Händler Produktion Schlüssel mit meinem Schlüssel, starten Sie es zeigt Fehler - Pflicht params-Hash fehlt. Und ich weiß nicht, wo man Händlerproduktschlüssel findet.
String merchantTestKeys[] = {"OygoFs", "OygoFs"};
String merchantProductionKeys[] = {"Sskq6q", "smsplus"};
String merchantKey = env == PayuConstants.PRODUCTION_ENV ? merchantProductionKeys[merchantIndex] : merchantTestKeys[merchantIndex];
String mandatoryKeys[] = {PayuConstants.KEY, PayuConstants.AMOUNT, PayuConstants.PRODUCT_INFO, PayuConstants.FIRST_NAME, PayuConstants.EMAIL, PayuConstants.TXNID, PayuConstants.SURL, PayuConstants.FURL, PayuConstants.USER_CREDENTIALS, PayuConstants.UDF1, PayuConstants.UDF2, PayuConstants.UDF3, PayuConstants.UDF4, PayuConstants.UDF5, PayuConstants.ENV};
String mandatoryValues[] = {merchantKey, "10.0", "myproduct", "firstname", "[email protected]", "" + System.currentTimeMillis(), "https://test.payu.in/_payment.php", "https://test.payu.in/_payment.php", merchantKey + ":[email protected]", "udf1", "udf2", "udf3", "udf4", "udf5", "" + env};
Bitte helfen Sie. Vielen Dank im Voraus