payment-gateway

Authorize.net Payment integration [closed]

社会主义新天地 提交于 2019-12-21 04:27:48
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I'm looking to do Authorize.net payment integration with a website using PHP. My questions are: 1) Where I can find a tutorial, development guide, and/or code samples for doing this with PHP. 2) Is it possible to obtain a test account to do the integration like Paypal's sandbox, or does one need to have a live

Looking for a payment gateway [closed]

纵然是瞬间 提交于 2019-12-21 04:24:24
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I'm looking for a payment gateway company so we can avoid tiresome PCI-DSS certification and its associated expenses. I'll get this out the way now, I don't want Paypal. It does what I want but it's really not a company I want to trust with any sort of money. It needs to support the following flow: User performs

How to integrate PayU money Gateway in Android? [closed]

拈花ヽ惹草 提交于 2019-12-20 08:36:10
问题 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 3 years ago . I am developing an Ecommerce app in which I want to integrate Payumoney payment gateway. Can someone help me with some procedure, link or tutorial, how to do so? Thanks. 回答1: I have done Perfectly :) :) You have to edit SuccessURL and FailureURL : Its Working for Me Perfectly.

How to Redirect Success or Failure Payment in Razorpay

╄→尐↘猪︶ㄣ 提交于 2019-12-20 01:36:32
问题 I am New to Integrate Payment Gateway. How to Redirect a URL after Success or Failure Payments in Razorpay. I want Js Code. I thing handler function can use that redirect. How to Use them var options = { "key": "rzp_test_aIfnpuWEudWnID", "amount": "35000", // 2000 paise = INR 20 "name": "Vanakkam Chennai", "description": "I Run.. Becasue .. I Care", "image": "http://vanakkamchennai.com/images/about/chennai_2017.jpg", "callback_url": 'https://www.google.com', "handler": function (response){

Disable all payments gateway if there's specifics products in the Cart

南笙酒味 提交于 2019-12-19 11:24:04
问题 I would like to disable all payments gateways under special situation: I've 2 special products that I don't want to be combined at checkout with any other product. Lets say that my "special" products IDs are 496 and 484 . All other are "normal" products. if one of these "special" products is in the cart, I want to disable "paypal" for example. if a customer has in his cart, at once, a "special" product and a "normal" product, I want to disable all the payments gateway , so he can't checkout.

How to disable Cash on Delivery on some specific products in Woocommerce

心已入冬 提交于 2019-12-19 05:09:42
问题 I want to disable Cash on Delivery(COD) for some products on my online shopping site. Is it Possible? 回答1: Compatible with woocommerce version 3+ Based on "Disable all payments gateway if there's specifics products in the Cart". The code: add_filter( 'woocommerce_available_payment_gateways', 'conditionally_disable_cod_payment_method', 10, 1); function conditionally_disable_cod_payment_method( $gateways ){ // HERE define your Products IDs $products_ids = array(37,40,53); // Loop through cart

WORLDPAY Integration using php

陌路散爱 提交于 2019-12-19 04:25:28
问题 Can any one please let me know is WORLDPAY payment gateway provides API for php stuffs? did any of you integrates this stuff? please advise me.... 回答1: You can find complete documentation here: RBS WorldPay Technical Guides A simple payment submission would look like this: <form action="https://secure.wp3.rbsworldpay.com/wcc/purchase" method=POST> <input type=hidden name="instId" value="yourid"> <input type=hidden name="cartId" value="cartid"> <input type=hidden name="amount" value="9.99">

How do I integrate Paytm wallet in an Android application? [closed]

亡梦爱人 提交于 2019-12-18 13:14:26
问题 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 4 years ago . I want to integrate Paytm wallet in an Android application as a payment option, just like in the Uber app. Can anyone help me out? Thanks in advance. 回答1: Update Paytm has added documentation now. https://developer.paytm.com/docs/v1/android-sdk/ They have support for Android, but

How to integrate MoneyBookers in Web application in PHP?

僤鯓⒐⒋嵵緔 提交于 2019-12-18 10:01:55
问题 I am constructing a PHP website,in which we need a payment gateway based on MONEYBOOKERs. Can Any one help in embedding the MoneyBookers gateway to my site. As I am using the test link which is: https://www.moneybookers.com/app/test_payment.pl But it is not showing any of the money transfer in it. Please Help! 回答1: I cover this topic in detail on a recent blog post of mine: How to automate Moneybookers (Skrill) using status_url (IPN) . There is example code for PHP and C# and pictures

Online payments for a middleman

妖精的绣舞 提交于 2019-12-17 20:07:37
问题 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