How To Integrate Paytm Wallet In Android Application?
I want to integrate paytm wallet in my android application. I found lots of suggestions and documentation on Google but nothing worked. If there is any documentation, code samples
Solution 1:
Note: Below is for version 1.0, now paytm updated their sdk, so you need to change that accordingly. Go to link :
http://paywithpaytm.com/developer/
and download Android+SDK
put below code in your function or where you want to start paytm stuff.
private int randomInt = 0;
privatePaytmPGService Service = null;
Random randomGenerator = newRandom();
randomInt = randomGenerator.nextInt(1000);
//for testing environment Service = PaytmPGService.getStagingService();
//for production environment /*Service = PaytmPGService.getProductionService();*//*PaytmMerchant constructor takes two parameters
1) Checksum generation url
2) Checksum verification url
Merchant should replace the below values with his values*/PaytmMerchantMerchant = newPaytmMerchant("https://pguat.paytm.com/merchant-chksum/ChecksumGenerator","https://pguat.paytm.com/merchant-chksum/ValidateChksum");
//below parameter map is required to construct PaytmOrder object, Merchant should replace below map values with his own valuesMap<String, String> paramMap = newHashMap<String, String>();
//these are mandatory parameters
paramMap.put("REQUEST_TYPE", "DEFAULT");
paramMap.put("ORDER_ID", String.valueOf(randomInt));
//MID provided by paytm
paramMap.put("MID", "id provided by paytm");
paramMap.put("CUST_ID", "CUST123");
paramMap.put("CHANNEL_ID", "WAP");
paramMap.put("INDUSTRY_TYPE_ID", "Retail");
paramMap.put("WEBSITE", "paytm");
paramMap.put("TXN_AMOUNT", "1");
paramMap.put("THEME", "merchant");
PaytmOrderOrder = newPaytmOrder(paramMap);
Service.initialize(Order, Merchant,null);
Service.startPaymentTransaction(activity, false, false, newPaytmPaymentTransactionCallback() {
@OverridepublicvoidonTransactionSuccess(Bundle bundle) {
app.getLogger().error("Transaction Success :" + bundle);
}
@OverridepublicvoidonTransactionFailure(String s, Bundle bundle) {
app.getLogger().error("Transaction Failure :" + s + "\n" + bundle);
}
@OverridepublicvoidnetworkNotAvailable() {
app.getLogger().error("network unavailable :");
}
@OverridepublicvoidclientAuthenticationFailed(String s) {
app.getLogger().error("clientAuthenticationFailed :" + s);
}
@OverridepublicvoidsomeUIErrorOccurred(String s) {
app.getLogger().error("someUIErrorOccurred :" + s);
}
@OverridepublicvoidonErrorLoadingWebPage(int i, String s, String s2) {
app.getLogger().error("errorLoadingWebPage :" + i + "\n" + s + "\n" + s2);
}
});
}
Also another thing is you need to declare one activity in AndroidManifest.xml file:
<activityandroid:name="com.paytm.pgsdk.PaytmPGActivity"android:theme="@style/AppTheme"android:screenOrientation="portrait"android:windowSoftInputMode="stateHidden"/>
Hope above code sample will help u lot. Also another thing is when you download Android+SDK you will get one jar file pgsdk.jar file that you need to add in your project and MainActivity.java class file for our reference. Enjoy!!!
Note: ChecksumGenerator and ValidateChksum urls are for just testing purpose which is provided by paytm development support team. You need to generate it on your own server for redirecting respective url.
Post a Comment for "How To Integrate Paytm Wallet In Android Application?"