payment-gateway

Split/Deferred payments through apple pay

戏子无情 提交于 2019-12-04 15:29:57
On the getting started page for Apple Pay, it says that Apple Pay supports "partial shipments." How is this implemented in practice? I know how to get a token from a successful PKPayment . Once I get that token, how do I use it to implement multiple sub-order payments through my payment gateway? For example, say the user validates a total $100 purchase through Apple Pay of two separate suborder shipments ($40 and $60 each) and I now have an associated token for the $100 order. Because of restrictions on some networks, we can't capture each payment until the associated item has been shipped,

How to get value back from Paypal?

有些话、适合烂在心里 提交于 2019-12-04 14:57:14
I am facing this problem from last month. First i was able to get value back from paypal. Now I am not able to get back value from paypal. I am using following code. <form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" style="padding: 0; margin: 0;"> <input type="hidden" name="cmd" value="_xclick/" /> <input type="hidden" name="business" value="my_bussiness_id" /> <input type="hidden" name="quantity" value="1" /> <input type="hidden" name="item_name" value="item" /> <input type="hidden" name="item_number" value="1" /> <input type="hidden" name="amount" value="item_price"

How do i enable a third party payment gateway (not supported today by Shopify)

自古美人都是妖i 提交于 2019-12-04 13:20:49
In india, Shopify supports the following payment gateways: Citrus Payment Direc Pay PayU India PayU Paisa But we have an existing merchant account with Axis Bank. I have no idea where to configure my Axis Bank Payment Gateway with Shopify. So the question is: How do i configure my Axis Bank Payment Gateway with Shopify? Is it even possible to add other payment gateways, which asre not yet supported (not listed in their store admin panel) by Shopify? You can write a connector for that Gateway that follows the ActiveMerchant pattern. Once it is all tested and works, submit it to Shopify for

How to integrate BHIM app payment gateway in an Android App?

我怕爱的太早我们不能终老 提交于 2019-12-04 12:33:13
问题 How to integrate BHIM app payment gateway in an android app, through upi id? I have no idea about payment gateway,I have not implemented payment gateway before. Please help me how to integrate payment gateway in an android app?(I want to integrate payment through BHIM app) 回答1: You can try DeepLinking UPI supported application. This way you can make a payment via any UPI supported application (BHIM, Phonepe, Paytm and all bank UPI apps) Code for deeplinking is as follow: Uri uri = Uri.parse(

INVALID_USER_CREDENTIALS/JSON_EXCEPTION in “PayU” Android Integration

拟墨画扇 提交于 2019-12-04 12:10:55
问题 I am tring to integrate payU payment gateway with my ecommerce application. I have a account on test payU with merchant id, key and salt. I am working on this demo application, whenever i change parameters like merchant key , salt . I get a error code 5014 . Which can be either of them. int INVALID_USER_CREDENTIALS = 5014; int JSON_EXCEPTION = 5014; Note : I am getting this as a response string : "Something went wrong : Value <!DOCTYPE of type java.lang.String cannot be converted to

Open payment gateway libraries for Java, Python, Ruby, Node.JS, and PHP

只愿长相守 提交于 2019-12-04 11:51:44
问题 I'm looking for generic and open source payment libraries that support many different payment processor APIs. In other words, I'd like to develop an application using a single payment processing API, but be able to easily switch between payment gateways, such as Authorize.Net, Payflow Pro, Braintree, PayPal, Google, Amazon, etc. This question gives some Java solutions, but the suggestions all look horrible. Isn't there anything more like ActiveMerchant for Java? I really need a good Java

Is it possible to have PayPal standard expand the 'Guest Payments' tab by default?

六眼飞鱼酱① 提交于 2019-12-04 11:45:30
I am using PayPal Standard to process orders. I have the "Paypal Account Optional" feature set to on, which makes it possible to accept payments from customers who dont have paypal accounts. OpenCart is the shopping system that i am using. This is the screen that is displayed when a customer want to purchase goods: When you click the "Don't have a PayPal account?" link, the tab is expanded: Is it possible to have this tab expanded by default, perhaps through the code that is sent to the site in the first place, with the order details? I found out that PayPal stores a cookie when you log in. If

How to integrate TEST PayU Payment Gateway in android application?

妖精的绣舞 提交于 2019-12-04 10:56:46
问题 I am new in Payment Gateway. Currently, I am working on a mobile app where I need to integrate PayU payment gateway in android app. So far, I have created a code for TEST url & when I run my app I get below exception: An error occurred. Sorry, some problem occurred. Screenshot of mobile app This is my code: public class PayMentGateWay extends Activity { private ArrayList<String> post_val = new ArrayList<String>(); private String post_Data=""; WebView webView ; final Activity activity = this;

What is causing my PayPal IPN script to fail?

此生再无相见时 提交于 2019-12-04 10:02:41
I am receiving the following from a PayPal IPN script. Is it evident from the following what is causing the IPN transaction to fail? If not, how can I investigate the problem further? [01/25/2010 7:49 PM] - FAIL: IPN Validation Failed. IPN $_POST variables from PayPal: mc_gross=25.00 protection_eligibility=Ineligible address_status=unconfirmed payer_id=AEVB83JZKDRCL tax=0.00 address_street=1 Main Terrace payment_date=10:49:52 Jan 25, 2010 PST payment_status=Pending charset=windows-1252 address_zip=W12 4LQ first_name=Test address_country_code=GB address_name=Test User notify_version=2.9 custom=

Firebase payment gateways?

别等时光非礼了梦想. 提交于 2019-12-04 07:59:55
问题 I'm currently evaluating whether Firebase will be suitable for an app I am making. The only potential sticking point I have found is taking payments - what are the options currently available? 回答1: Firebase is a real-time data store, focused on lightning-fast, scalable solutions for sharing data between hundreds to millions of clients simultaneously. It does not offer any payment processing solutions internally. A third party service like Stripe will integrate quite easily with Firebase, and