payment-gateway

Issue in PayUmoney Android integration

北战南征 提交于 2019-12-13 13:38:33
问题 I am trying to integrate PayUMoney in my application. Application gives proper output if i use following test credentials; String merchant_key = "kYz2vV"; String salt = "zhoXe53j"; String base_url = "https://test.payu.in/_payment"; String SUCCESS_URL = "https://www.payumoney.com/mobileapp/payumoney/success.php"; String FAILED_URL = "https://www.payumoney.com/mobileapp/payumoney/failure.php"; When I replace Key & salt with live credentials as; String merchant_key = "gtKFFx"; String salt =

first data global gateway API Integration gives error

谁说我不能喝 提交于 2019-12-13 12:18:36
问题 I have compiled a simple ASP.NET project to test first data global gateway API Integration. Someone tell me what to do because I have tried everything. It throws the ERROR if I use ASP.NET Development server: <r_error> Unable to load certificate ERRs: wsa=33558530 err=33558530 ssl=537317504 sys=33558530. INFO: ACE_SSL (5260|6284) error code: 33558530 - error:02001002:lib(2):func(1):reason(2) </r_error> ERROR if I use Virtual Directory: This is generated when //Call LPTxn string resp = LPTxn

Sagepay cURL data posting

限于喜欢 提交于 2019-12-13 07:35:33
问题 can any one please let me know where i did the mistake on the below code. I have just post the transaction information to sagepay as the format suggested by sagepay. so i have used cURL to post those information. here my doubt is appears on the line number 10. please advise will i use this statement for fresh connection creation? will it start infinite loop? <? 1 $curlSession = curl_init(); 2 curl_setopt ($curlSession, CURLOPT_URL, $url); 3 curl_setopt ($curlSession, CURLOPT_HEADER, 0); 4

Suggestion on Payment gateway

断了今生、忘了曾经 提交于 2019-12-13 05:44:31
问题 I am developing a MVC web application and one of its feature is to implement credit card transaction and upon goggling I found many references to payment gateways (ZipZap,Paytoo etc..) as I haven't worked earlier on Payment gateway and wanted to know which one should be picked as to startup and provide a trial for sandbox testing in dev environment. Any suggestion or help on this would be of great help. 回答1: Check Stripe and Paypal Sandbox, and also more information about payment gateways and

Is zero amount transaction possible with paypal methods?

血红的双手。 提交于 2019-12-13 04:32:49
问题 Is it possible to do transaction with zero amount in paypal methods like express checkout or standard? I want to do auto payments in paypal express or standard methods. In which is it possible I call request and It will make auto transaction from customer paypal account like it did in Paypal recurring method. I do not want to use paypal recurring method because I am managing my own payment schedules and do not want to use its default recurring system. I am using autorize.net CIM method also.

Laravel Cashier 3D Secure/SCA issue stripe

放肆的年华 提交于 2019-12-13 03:58:57
问题 After integrating the stripe system using laravel cashier in our website, I did the testing with the test cards, few cards were successful and few were not. I have tried to adapt to the 3D secure/ SCA. So the thing is, 4000003800000446, 4000002500003155 and 4000000000003055 are success while 4000000000003220 and 4000002760003184 are failure among the cards, returns incomplete status. My system is for annual subscription for a magazine. I do get the pop up urging me to confirm authentication

Card payment Using PayPal android

可紊 提交于 2019-12-13 03:21:29
问题 Can we implement Paypal with a card payment. e.g. Somebody doesn't have paypal account so he/she can pay using debit or credit card. Is there any way to implement paypal with card. Please help. 回答1: Hi I know I am very late to answer this question but surely folks implementing Paypal in their app will get benefit from this! Android SDK for Paypal does not support Card Payment but yes "Rest API sdk for Paypal" has the capability. Include this in your build.gradle: compile 'com.paypal.sdk:rest

Additional checkout payment gateway field for Authorize.net in Woocommerce

大兔子大兔子 提交于 2019-12-13 03:05:16
问题 I'm trying to add an additional field inside the Authorize.net Payment Gateway plugin for WooCommerce. The following code will add a field into a default gateway, like COD or BACS. This solution was found here. if( 'cod' === $payment_id ){ ob_start(); // Start buffering echo '<div class="bacs-options" style="padding:10px 0;">'; woocommerce_form_field( 'bacs_option', array( 'type' => 'text', 'label' => __("Fill in this field", "woocommerce"), 'class' => array('form-row-wide'), 'required' =>

insert radio button inside payment_fields WooCommerce instead of credit card form

試著忘記壹切 提交于 2019-12-13 01:29:36
问题 I an developing a custom payment method for WooCommerce. I want to add three radio button after my payment method is selected. I have added this via browsers's inspect element toll. How can i do this and get the value of radio button inside the extend WooCommerce payment gateway class. 来源: https://stackoverflow.com/questions/53336853/insert-radio-button-inside-payment-fields-woocommerce-instead-of-credit-card-for

2checkout payment with billing address

戏子无情 提交于 2019-12-13 00:54:26
问题 I am experiencing an issue (may be). The issue is that when I give billing address with credit card information to create sale. The sale is processed successfully. BUT, when I skip the billing address the Authorization Failed is returned. Is it mandatory to give billing address with credit card information to create sale? I am doing it with ajax call from my application. 回答1: The billing address is required for all sales. This is a requirement of our banking partners for address verification.