paytm

Paytm sdk ios integration to open Paytm payment form?

放肆的年华 提交于 2019-12-20 11:33:24
问题 Integrated Paytm sdk 2.1 in iOS (Xcode 7) and configured to make payment . I have a form in which amount and other fields need to filled then there is a button for Payment . Here is code which i am using : //Step 1: Create a default merchant config object PGMerchantConfiguration *mc = [PGMerchantConfiguration defaultConfiguration]; //Step 2: If you have your own checksum generation and validation url set this here. Otherwise use the default Paytm urls mc.checksumGenerationURL = @"generate

How to generate “checksumGenerationURL” and “checksumValidationURL” in iOS PayTm integration?

拜拜、爱过 提交于 2019-12-18 05:10:34
问题 I want to integrate Paytm SDK in my app. I have MerchantId and Merchant key . But i don't have those Urls. How to generate those URLS? 回答1: I integrated PayTM sdk into swift application and its working fine . The issue where i got stuck about 15 days is the URL Generation : checkSumGenerationURL and checkSumValidationURL . Earlier i was using PayTM provided url but due to this it gets failed every time trying to payment . so here is the final solution : I sit with my server team and then

Module compiled with Swift 4.2.1 cannot be imported by the Swift 5.0 compiler

安稳与你 提交于 2019-12-17 17:54:24
问题 I am trying to implement integration of third party app into project as per instruciton https://github.com/Paytm-Payments/Paytm_iOS_App_Kit/tree/master/Swift/BitCodeDisabled/PaytmNativeSDK I see the following error in build Module compiled with Swift 4.2.1 cannot be imported by the Swift 5.0 compiler I have tried toolchains https://medium.com/xcblog/switching-swift-versions-inside-xcode-using-toolchains-755b28831c43 The error changes to Reason: Incompatible library version: PaytmNativeSDK

Paytm console giving 404 error in Swift 4

折月煮酒 提交于 2019-12-13 03:15:54
问题 I'm implementing Paytm in iOS using Swift 4. I'm sending requested data to paytm console, but it is showing "404 Not Found" error. I'm sending the following data to paytm: let merchantConfig = PGMerchantConfiguration.default() merchantConfig?.checksumGenerationURL = "https://pguat.paytm.com/paytmchecksum/paytmCheckSumGenerator.jsp" merchantConfig?.checksumValidationURL = "https://pguat.paytm.com/paytmchecksum/paytmCheckSumVerify.jsp" let odrDict = NSMutableDictionary() odrDict["CALLBACK_URL"]

Order_id is invalid in Paytm Integration in iOS swift4

旧城冷巷雨未停 提交于 2019-12-11 19:37:00
问题 Paytm Integration in swift4: The response is Transaction Finished and the response message is Invalid order id but I'm generating order id new at every transaction, is there any possible solution for this. Parameter which I'm passing : var orderID = "123456789".randomString(length: 20) orderDict["MID"] = "RentSe98692194807190" orderDict["CHANNEL_ID"] = "WAP" orderDict["INDUSTRY_TYPE_ID"] = "Retail" orderDict["WEBSITE"] = "APP_STAGING" orderDict["TXN_AMOUNT"] = "100" orderDict["ORDER_ID"] =

Marketplace API for Paytm, Myntra and Jabong

十年热恋 提交于 2019-12-11 07:28:17
问题 Do Myntra, Paytm and Jabong provide APIs for Marketplace Integration? I need Order and Catalog for syncing with my system. Flipkart and Amazon already have API developed for this purpose. For example, Flipkart provides: https://seller.flipkart.com/api-docs/order-api-docs/OMAPIOverview.html to interact with Order Data. Is there any similar sort of thing for Myntra, Jabong and Paytm? 来源: https://stackoverflow.com/questions/47647634/marketplace-api-for-paytm-myntra-and-jabong

react-native-paytm not working for android

你。 提交于 2019-12-11 03:12:54
问题 I am trying to use react-native-paytm, I followed the steps and example that was there in it. But after clicking on pay via PayTm button, it is showing me raw html having a form with all my data in hidden input element. Can someone assist me with it? 回答1: This issue generally comes when you don't pass correct values of paytm parameters. One should check the correct values in the profile of paytm. 来源: https://stackoverflow.com/questions/51264762/react-native-paytm-not-working-for-android

integration Paytm Payment Gateway Android

主宰稳场 提交于 2019-12-03 07:29:51
I am trying to integrate paytm's payment gateway to my Android App. I can't seem to find any proper documentations or procedures on their website. I've checked every lead on this through google but no help. Tried contacting the Paytm team through mail and phone .. no response. now I am stuck here. here's what I am passing : paramMap.put("REQUEST_TYPE", "DEFAULT"); paramMap.put("ORDER_ID", String.valueOf(randomInt)); paramMap.put("MID", "************2343"); paramMap.put("CUST_ID", "CUST123"); paramMap.put("CHANNEL_ID", "WAP"); paramMap.put("INDUSTRY_TYPE_ID", "Retail"); paramMap.put("WEBSITE",

Paytm sdk ios integration to open Paytm payment form?

余生长醉 提交于 2019-12-03 00:42:39
Integrated Paytm sdk 2.1 in iOS (Xcode 7) and configured to make payment . I have a form in which amount and other fields need to filled then there is a button for Payment . Here is code which i am using : //Step 1: Create a default merchant config object PGMerchantConfiguration *mc = [PGMerchantConfiguration defaultConfiguration]; //Step 2: If you have your own checksum generation and validation url set this here. Otherwise use the default Paytm urls mc.checksumGenerationURL = @"generate checksum url"; mc.checksumValidationURL = @"checksum validation url"; //Step 3: Create the order with

How to generate “checksumGenerationURL” and “checksumValidationURL” in iOS PayTm integration?

删除回忆录丶 提交于 2019-11-29 07:52:12
I want to integrate Paytm SDK in my app. I have MerchantId and Merchant key . But i don't have those Urls. How to generate those URLS? I integrated PayTM sdk into swift application and its working fine . The issue where i got stuck about 15 days is the URL Generation : checkSumGenerationURL and checkSumValidationURL . Earlier i was using PayTM provided url but due to this it gets failed every time trying to payment . so here is the final solution : I sit with my server team and then decided to handle it in our own server then after try it . It works great . So here is final set of parameters