payment-gateway

Age verification with credit card and payment gateway

ぃ、小莉子 提交于 2019-12-07 08:11:49
问题 I am developing a gaming website in which the user must be aged above 18 in order to make a payment and start a game. And I am looking for a solution to verify the age using the credit card by which the user will be making payment through the website. Is it possible to verify the card holders age with the help of any recognized payment gateway? 回答1: Is it possible to verify the card holders age with the help of any recognized payment gateway? I had a credit card when I was 17. If you need to

Magento 2 - No redirect to external payment provder

淺唱寂寞╮ 提交于 2019-12-06 22:48:38
Today I started working on a payment module for Magento 2. After a lot of try and errors I now have a payment module that can be configured and has restrictions. Now, the next step would be to start a transaction request after placing the order. Within Magento 1 I would use getOrderPlaceRedirectUrl() to return an url where the consumer would be redirected to. When I try this with Magento 2 then the function is called but no redirect is done to the return url. Does anyone know if this has changed within Magento 2 or what I'm doing wrong? The function looks like: public function

how to implement a payment system in rails [closed]

一世执手 提交于 2019-12-06 21:27:00
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I am new to the rails world and am in the process of setting up a small rails app for a client. One of the requirements is that the user enters their credit card which gets charged for a specified amount. I haven't had much experience with payment systems. I believe active

Braintree Drop-In UI does not show CVV field

送分小仙女□ 提交于 2019-12-06 17:00:50
问题 I'm fairly new to Braintree API. I'm using Recurring Payments. And for that I'm using Drop-In UI that is provided by Braintree. Everything goes well but it only shows two fields: Card Number and Expiration Month/Year; and the Paypal button. It's not showing CVV field. I believe the CVV field is optional and the transaction will still go through if I were to not accept it. But I'm wondering why is it not showing up? Braintree's new documentation is very limited. And I can't find much info on

CCAvenue Integration in Android

偶尔善良 提交于 2019-12-06 16:49:30
问题 Nice to meet you. I am developing shopping app using parse.com as backend. I am going to integrate with Indian Payment Gateway(CCAVenue). I am integrating CCAvenue to my android app and I am doing Non-seamless integration. My merchant server is php and I am making my httppost to the GetRSA.php file kept in my merchant server. The code I am using is as below List<NameValuePair> httpParams = new ArrayList<NameValuePair>(); httpParams.add(new BasicNameValuePair("access_code", intent

Magento Payment Info Block

人盡茶涼 提交于 2019-12-06 13:01:08
问题 I have created new payment method (gateway). In this gateway I sending information to bank for credit payment and I use some additional payment options like Name/Person Age/Person Profit/Credit Term/... By this fields I calculate Credit Term and send all of this data to bank. I would like to show this information in Payment Method info block (right sidebar in default theme), but I would not like to save this fields to database (so in admin area later I will have information like it was

WooCommerce order status change from payment gateway

蓝咒 提交于 2019-12-06 12:54:46
I have integrated a payment gateway to accept online payments for my store running on woocommerce. Everything works fine but I noticed that woocommerce is changing the order status to wc-processing for all the online paid orders by default. As per my store's functionality I want all the online paid orders to be in wc-on-hold status initially. Is there any way to stop woocommerce changing the order status to wc-processing programatically? Mauro yes there is a way, but you need to modify the payment plugin or add your own code, you can read this to understand how payments work. Now, woocommerce

RBS WorldPay Integration

余生颓废 提交于 2019-12-06 11:04:36
问题 Ok I'm stuck, I've looked at some other questions on here but no help, I've searched online, I've logged into my test account but I can't find any documentation anywhere. Does anyone have links to the WorldPay documentation, specifically when a 'Payment Response' is made, what format is it in? 回答1: The documentation can be found at http://rbsworldpay.com/support/bg/index.php?page=guides&c=UK Sounds like you need the 'Payment Notifications' guide, The Payment Response is an HTTP POST and is

How to implement Authorize.Net SDK in iOS

偶尔善良 提交于 2019-12-06 10:51:53
问题 In my project i need to implement payment gateway so that i tried to implement through Authorize.Net iOS SDK . By googling i have followed some steps as in below 1)Downloaded Authorize.Net iOS SDK from https://developer.authorize.net/integration/fifteenminutes/ios/ 2) Goto MyProject -> Targets -> Build Settings. 1.Header Search Paths : ${SDK_DIR}/usr/include/libxml2 Mark the Recursive checkbox as checked $(SRCROOT)/anet_ios_sdk-1.1.1/ANMobilePaymentLib Library Search Paths : $(SRCROOT)/anet

How to get Order key for creating custom order return url in WooCommerce

杀马特。学长 韩版系。学妹 提交于 2019-12-06 09:34:16
This is the code that I am using to get a custom Order return URL: global $woocommerce; $test_order = new WC_Order($order_id); $test_order_key = $test_order->order_key; $returnURL = site_url().'/checkout/order-received/7140/'.$test_order_key; The example URL that I need is: http://www.example.com/checkout/order-received/[order_number]/key=[wc-order-key] How do I get [wc-order-key] ? Thanks. There is 2 ways to get the order key: 1) From an instance of WC_Order object class using the method get_order_key() , this way: // Get an instance of the WC_Order object $order_obj = WC_get_order($order_id)