payment-gateway

Knet payment gateway for PHP [closed]

牧云@^-^@ 提交于 2019-11-29 05:11:58
I am looking to integrate Knet payment gateway in PHP, but they have provided API for .NET, JSP and Python only. Can anyone please help me and provide any idea how to integrate the KNET in PHP. Update KNET now officially supports PHP natively. You can browse their official client at this github repo . Disclaimer: The above repository is maintained by the Google Developer's Group Kuwait chapter and is not associated with KNET. However, the code uploaded is what KNET provides to their clients. Warning: The KNET client only supports debit transactions, it does not support credit card transactions

Purchase physical product from iPhone app without Apple in app purchase

此生再无相见时 提交于 2019-11-29 03:12:02
问题 Can an iPhone app allow a user to purchase a physical product (say a pen or a mouse) from inside an app, without using Apple in app purchase? Is it allowed by Apple? If yes, do you know any API that supports this? Thanks AJ 回答1: You are not permitted to sell physical goods or services using 'In-App Purchasing' since the goods purchased via this method must relate directly to the app using them. You are free to implement your own payment handling system for selling physical goods though - for

how paypal, authorize.net and many other payment gateway service get access to visa card processing regardless of bank?

拈花ヽ惹草 提交于 2019-11-28 17:16:32
问题 We know there are so many payment gateway service providers namely paypal, moneybrookers, authorize.net and many national and international payment gateway providers. Now, my question is what are the steps to develop our own payment gateway service to process any visa and mastercard regardless of any bank of the world. From which organization should i need to take authority to develop my own payment gateway service. What are the api and protocols provided by www.visa.com and www.mastercard

Credit card payment gateway in PHP? [closed]

纵饮孤独 提交于 2019-11-28 16:05:42
I need to process credit cards and integrate with backend payment services to credit them. The majority of solutions on the internet require an intermediary, eg. 2CO , GCO , Auth.net . Do you have any experience with implementing a credit-card payment gateway in PHP? Any help in appreciated. Thanks for your time. Stripe has a PHP library to accept credit cards without needing a merchant account: https://github.com/stripe/stripe-php Check out the documentation and FAQ , and feel free to drop by our chatroom if you have more questions. If you need something quick and dirty, you can just use

braintreegateway Uncaught exception

梦想的初衷 提交于 2019-11-28 13:32:31
问题 I am using braintreegateway with the following code in sandbox mode. Code is used from developer site require_once 'braintree/lib/Braintree.php'; Braintree_Configuration::environment('sandbox'); Braintree_Configuration::merchantId('marchentid'); Braintree_Configuration::publicKey('publickey'); Braintree_Configuration::privateKey('privatekey'); $result = Braintree_Transaction::sale([ 'amount' => '100.00', 'orderId' => '123', 'merchantAccountId' => 'marchentid', 'paymentMethodNonce' =>

Online payments for a middleman

懵懂的女人 提交于 2019-11-28 12:12:51
I'm new to online payments and would like some opinions on my task. Here is the scenario: I have a website where people buy and sell digital photos. A seller has a photo and wants to sell it. They create an ad on the site and upload the photo into the website database. Buyers looking for photos come to the site and buy them. The buyer pays the asking amount and then can download the photo. As the middleman, I'd like to charge the seller a fee or percentage of the selling price. The buyer shouldn't pay any website fees, just the selling price. My question is - what is the best way to do this? I

PayuMoney Integration in Android : Some error occured! Try again

青春壹個敷衍的年華 提交于 2019-11-28 10:42:48
问题 I'm integrating payuMoney (not payu biz) in my android application. I followed this official documentation of PayuMoney. I have changed merchant key, merchant id and url of hash generation of my server in this sample app. Then it is taking me to PayuMoney sdk screen where I can login/signup. But it is showing the toast message 'Some error occured! Try again' once I login with my credentials. Is there anything else that I'm missing? Please guide me. 回答1: This happens because you might not have

How do I integrate the ATOM payment gateway in my app?

人走茶凉 提交于 2019-11-28 07:39:13
I am new to Android. I want to know how can I integrate the ATOM payment gateway mobile checkout page in my application? I want it so that the user should fill his credit card details and pay on-line. If I use other payment gateways, like Paytm or Payu they provide an SDK, but Atom doesn't Any help would be appreciated According to this ,no java and/or android SDK is provided by them. You can still click the "contact us" button(in the bottom of the webpage) and ask them directly weather they provide any SDK for java/android or not. Update: Android SDK is now provided by ATOM Payment gateway

Disable payment gateways based on user country geo-ip in Woocommerce

蹲街弑〆低调 提交于 2019-11-28 06:48:21
问题 In my Woocommerce shop I set up the geolocation system, when geolocation identifies any country other than IT I would like to disable payment methods If it is IT (geop-ip), show payment. If all other country (geo-ip), disable payment. 回答1: Woocommerce has already a geolocation Ip feature through WC_Geolocation class, so you don't need any additional plugin. Here is the way to disable payment gateways for all countries except "IT" (Italy) country code, based on costumer geolocated IP country:

Additional field on checkout for specific payment gateway in Woocommerce

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-28 06:04:34
问题 I have a custom Woocommerce payment gateway and I need to add additional field on the checkout when the payment is selected. Basically, when the users click the custom payment gateway a "select" field should appear and they have to choose something from the select field. I have attached a screenshot to represent better the idea of what I need to do. Unfortunately, I couldn't find any info about that in the Docs. 回答1: The following code will append to the gateway description in checkout page,