I trying to implement a recurring payments for a web application with inituit payments.
I was searching a lot but couldnt find much detail documentation which has a good flow. Is there any specific links or examples which I can see.
I came across this question it is a good one but not recurring payments again.
Implement Payment Process With Quickbook(Intuit Payment)
I want my app to obtain the payment details from the client and process it via the gateway.
thanks
i found this as the starting point for the payments
https://developer.intuit.com/docs/030_qbms
but still wanting to find the XML requests
Related
I have no experience in integrating Paypal, so I'm sorry if my questions seems a little bit odd..
I have tried for the last 48 hours to read Paypal API docs, but I can't figure out how to achieve what I'm looking for:
I want to use the chained payment option on my website,
but I don't want to host the purchase form etc on my website,
I want to put a purchase button that will redirect to paypal's payment page, where there will be two options:
- Pay with Paypal account
- Pay with credit card
can anyone reference me to what should I do?
thanks..
Read through the Adaptive Payments developer guide, and then take a look at the Pay API specifically.
I want to implement Mollie payment gateway with iDeal and credit card method and wants to implement Recurring Payments with it (i.e. weekly, monthly, etc). I am doing it using PHP.
Does anyone help me in that, because there isn't any help available on API related to this.
How we can achieve that ?
Thanks.
Mollie only launched recurring payments in 2016, so it's not that surprising you din't find anything previously. Have a look here:
https://www.mollie.com/nl/recurring
There are some PHP modules for mollie you can use. Most of them have README's on the GitHub.
And there is the API reference documentation
Working with Paypal API is the worst experience so far for me as a developer. Can anyone point me to a simplified php class to do recurring payments (yearly fee). I've been searching for one but found too many with too many differences, some say it's for recurring payments some for subscriptions. What I really need is recurring until the user cancels the membership, so no end date specified.
Any help is greatly appreciated.
Check this https://www.paypal.com/pdn-recurring
I've built an Ecommerce site in Silverstripe and I'm new to this, sorry if I ask something silly. I'm just wondering how do I implement payment gateways to the Ecommerce site in Silverstripe? Do you have any good tutorials that I can follow?
Thank you very much. By the way I'm choosing DPS as the gateway.
Any recommendations for me to start this would be appreciated.
You may want to start by looking at the Payment module for SilverStripe.
http://www.silverstripe.org/payment-module/
https://github.com/silverstripe-labs/silverstripe-payment
In my opinion payment gateway these days provides so much facilities that all we need to do is to redirect user to the payment gateway with certain attributes like amount,curreency and some other attributes being required by the gateway.
once payment is authorized payment gateway redirect user back to your page.Now almost all payment gateway work in two ways
Synchronized call
ASynchronized call
in the second method you have to provide some entry point to the gateway where it will send you the all required information about payment.
Once you have everything all you need is to do final checkout process for the user.Beside the silverstripe payment module i will suggest you to go through DPS documentation as they might have shown some samples how you can communicate with them and what they expect from you in the request what its structure should be and what they will send back once user done with payment,response structure etc.
I tend to follow this approach once we decide the payment gateway go through there documentation set up a test account with them and than start playing around.
I have a database where you can select articles etc, users have an account, it's all in mysql and php (i guess you don't need that code).
What i was wondering was how to write a script that allows users to pay online for the articles they selected?
It doesn't need to be any code, just ideas / hints / tips / ... (that are doable in PHP or something similar)
Thanks in advance!!
-Samuel
You have to do that through a service that collects money, such as paypal or a bank.
You make an account there, and they will provide the necessary files and documentation to do that.
Usually it will mean
when the user wants to pay, you redirect them to a specific page in the payment site
you host an IPN (Instant Payment Notification) file where that site will contact you when he receives a payment
I've done some paypal coding before and it is easy to set up, suggest that you should search for payment gateway that, i've work with ipay88.com before its one of payment gateway at my place.
Usually if you setup the paypal for the business transaction you will need to register as merchant account and they will charge you per transaction, same goes with payment gateway.
It is a very broad question. But basically you need to integrate some payment module, such as paypal. Look at their website, where there are tutorials on how to get it working with php.