payment-gateway

Android PayUMoney integration error “some error occured”

倖福魔咒の 提交于 2019-12-25 02:22:51
问题 I am trying to integrate PayUMoney payment gateway in my android app, I am not sure what is happening with it. Even If I have generated hash from server and followed exactly the same procedure provided on PayUMoney website I am getting TOAST message some error occured . Event landing page is not loaded, as soon as I move from checkout page to payU spinner rotates a while and after that I get TOAST message and I land back to my checkout page. PayUMoney Code String serverCalculatedHash =

Adding billing address to Adyen Web SDK

旧街凉风 提交于 2019-12-25 01:11:03
问题 Im using Adyen Web SDK. I'm trying to figure out how to add billing address as mandatory fields on the UI. Currently it looks like: The adyen documentation is woeful, and there's no mention of how to add billing address fields. They have a section on customisations, but there are few options, and adyen don't even give a list of the possible values. See here: https://docs.adyen.com/developers/checkout/web-sdk/customization/settings If I look in their documentation on localisation, it appears

What's the Technique for Building Domain Packages in AMember?

时光怂恿深爱的人放手 提交于 2019-12-25 00:41:32
问题 I want to use AMember to have people purchase WordPress plugins and themes. However, I want to sell different prices for single domain vs. letting them install like 5-domain packs (and multiples of those). One would go through the AMember workflow to purchase something, and then receive a serial number based on their purchase. They activate the theme or plugin and then put in this serial number in an options panel, and they're off and running with a functioning plugin or theme. What is the

error trying to make sandbox paypal to work with rails?

孤人 提交于 2019-12-24 19:25:59
问题 I am having problems integrating paypal payment gateway with rails. I will explain below the steps i did. I first went to developer.paypal.com I created two sandbox accounts one for buyer and one for business account. I changed business account to Business-Pro I then installed activemerchant gem in rails. In config/environments/development.rb i pasted the following chunk config.after_initialize do ActiveMerchant::Billing::Base.mode = :test paypal_options = { login: "aGthYkgkYXVA_api1.gmail

Change payment gateway data sent to product description

。_饼干妹妹 提交于 2019-12-24 19:15:08
问题 I have a payment gateway for woocommerce, but in the product name of the products in the payment gateway dashboard the product name is received right as the code below. Product name: Apple AirPods Description: Wireless device used to bla bla What i receive: Apple AirPods What i want: want to show the product description next to the product name with w dash - between them as below; Apple AirPods - Wireless device used to bla bla The code that sends the product name only and works fine here is

Paypal Express checkout with shipping cost and error

人盡茶涼 提交于 2019-12-24 17:48:20
问题 Data I'm putting to paypal request (SetExpressCheckout) [METHOD] => SetExpressCheckout [ENDPOINT] => https://api-3t.sandbox.paypal.com/nvp [USER] => *** [PWD] => *** [SIGNATURE] => *** [VERSION] => 84.0 [TOKEN] => [CURRENCYCODE] => GBP [RETURNURL] => http://experiment.loc/ [CANCELURL] => http://experiment.loc/?action=cancel [SHIPPINGAMT] => 2.21 [SOLUTIONTYPE] => Sole [LANDINGPAGE] => Billing [L_ITEMCATEGORY0] => Physical [L_QTY0] => 4 [L_AMT0] => 2.20 [L_DESC0] => ZajÄ…czek 1 [L_NAME0] =>

iOS: PayTm-Something went wrong. It may be due to any of these reasons

喜夏-厌秋 提交于 2019-12-24 14:28:23
问题 i am trying to integrate payTm payment gateway ( Production ) in my app. i generate all the required credentials for it but when i press pay button from app it get redirected to payTm page and OOPS Something went wrong screen... appears 来源: https://stackoverflow.com/questions/48782215/ios-paytm-something-went-wrong-it-may-be-due-to-any-of-these-reasons

In-App not working

泄露秘密 提交于 2019-12-24 09:49:22
问题 I just integrated the Apple's In-App purchase into my application with 4 products. It was working fine in Sandbox mode before it gets rejected by Apple for not submitting the In-App with the application binary. Once it was rejected it is not fetching the products I was added. It shows no products are there in the list. I checked all the product IDs. But no use. Deleted the previous products and added new, but still the same problem exists. After that I created new application with 2 products.

Shopify Custom Payment Gateway Implementation

此生再无相见时 提交于 2019-12-24 06:03:45
问题 I successfully added my payment gateway to admin and its also show me on checkout page but when user click on "place order" i don't have any idea about how shopify process after that. i want to make payment using custom payment gateway. Where i can add my custom file for payment gateway ? Or where i can add code for custom payment gateway. what i need to do is.. - when user click on "place order" button ,get all the detail of order - setup curl request for payment based on details 回答1: You

PayUMoney integration - How to calculate hash for comparing with response?

时光总嘲笑我的痴心妄想 提交于 2019-12-24 03:34:46
问题 Generating Hash for Post request $hashSequence = "key|txnid|amount|productinfo|firstname|email|udf1|" ."udf2|udf3|udf4|udf5|udf6|udf7|udf8|udf9|udf10"; $hashVarsSeq = explode('|', $hashSequence); $hashString = ''; foreach ($hashVarsSeq as $hashVar) { $hashString .= isset($payObject['params'][$hashVar]) ? $payObject['params'][$hashVar] : ''; $hashString .= '|'; } $hashString .= $salt; //generate hash $hash = strtolower(hash('sha512', $hashString)); After getting successful response generating