Paypal Payment Gateway - php

I want to integrate recurring payments using paypal for my application which is uk based and I want to use credit card as well for recurring payments.
I have checked Paypal Payflow gateway and it shows Payflow Pro is not available for uk.
Please help me Is paypal works for uk based application or not.
If not then what will be available gateways that i can use for recurring payments.
Thanks.

Did you have a look at the Laravel Cashier documentation there are already Frameworks for your case (Braintree=Paypal)

Related

How to process payments with credit cards through Paypal from Argentina

I am new to Paypal integration and cannot find how am I supposed to make it. My requisites are the following:
Company registered in Argentina
Users should be able to buy without having to create a Paypal account with a credit card
The integration should not be easily tampered with
With those (I thought) simple requirements I spent many hours and couldn't find a solution that applied.
This is what I found out:
Payments REST API, should not be used for credit card payments
Important: The use of the PayPal REST /payments APIs to accept credit
card payments is restricted. Instead, you can accept credit card
payments with Braintree Direct.
https://developer.paypal.com/docs/api/payments/
Braintree Direct (the method to integrate credit card payments with full customization is not supported in Argentina) https://www.braintreepayments.com/country-selection
NVP and SOAP API Reference (old Paypal API to integrate payments) is no longer supported.
Important: This integration method is Deprecated as of January 1, 2017. For
new integrations, see the PayPal Express Checkout Integration Guide.
https://developer.paypal.com/docs/classic/api/
PayPal Express Checkout Integration is horrible, seems insecure and prone to tampering if used only client side, and though I found a way to make it work more securely with a server-side payment generation I couldn't find a way for it to pay without having a Paypal account.
https://developer.paypal.com/docs/integration/direct/express-checkout/integration-jsv4/
and
https://developer.paypal.com/demo/checkout/#/pattern/client
So I am left with no option to integrate credit card processing through Paypal for a business in Argentina. Before giving up I would like to know if somebody knows of a way to make this integration work.
Payoneer is also an option. Paypal isn't the only thing out there.

Recurring payments using Paypal Merchant SDK or Paypal REST API

Everything does not look good with the Paypal APIs. Paypal Merchant API seems to be deprecated , but most of the examples and functionality is referring to Marchant SDK.For example take Recurring. REST API does not provide any example of Recurring Payments !
In what context this API is deprecated ? I am looking for recurring payments done for "Paypal Payments Advanced" account type.
If you are looking to implement Recurring Billing with PayPal Payments Advanced you'll want to look at the Payflow platform APIs. here is a good place to get started:
https://developer.paypal.com/docs/classic/products/recurring-billing/

Magento 1.7.0.2 add a second paypal module for credit cards

I already uses PayPal as a payment method but I want to add the option to use credit card. I know you can use it by choosing the paypal option but my customer/friend want people to be able to choose it directly but still being transferred to paypal's website credit card payment.
-Credit Card
-Paypal
-Invoice
Can anyone help me figure this out!
You can achieve this using Paypal Payments pro.
You can follow these magentocommerce links to configure paypal payments pro in your magento store,
http://www.magentocommerce.com/knowledge-base/entry/paypal-payments-pro-workflow-for-magento-community
http://www.magentocommerce.com/knowledge-base/entry/getting-started-with-paypal-payments-pro-for-magento-community
http://www.magentocommerce.com/knowledge-base/entry/setting-up-paypal-payments-pro-for-magento-community

how to setup paypal adaptive payments with recurring billing feature

are there any tutorials on how to setup paypal adaptive payments api with recurring billing? I searched everywhere but only find the payflow and paypro with recurring billing. And please don't link/point me to the dev docs on paypal's website, those don't really help since they are too detailed and long...and not to mention don't really show any code examples on this.
You could use the preapproval feature with Adaptive Payments to set up a type of recurring payment. A preapproval is an approval to make future payments on the sender’s behalf. So you could set your system up to automate the calls, such as a cron job or etc to process the payments for you. There should be information on this in the Adaptive Payments guide. Some online gaming sites use this features for purchases and subscriptions.

PHP Paypal recurring payment

Hi
Can someone please explain me if "PayPal recurring payment" and "Paypal subscription" are the same thing?
Like I am working on a monthly membership payment integration with php and paypal. What I need to do is make this go on forever until the member decides to opt out. I am using this class found at www.micahcarrick.com/php-paypal-ipn-integration-class.html for the integration.
In the class you can mention like for how long you would like to make it as recurring payment but there are no options to make it go forever like a monthly subscription thing. Please help!
Many thanks in advance and I really appreciate your help :-))
These are not the same thing. A standard PayPal account can create subscriptions but not recurring payments. If you plan to use IPN as your only integration, you need to create subscriptions, not recurring payments. You do not create them programmatically, you just generate a subscription link and the buyer creates the subscription on the PayPal website.
Recurring payments are part of one of the APIs accessible to PayPal Website Payments Pro accounts.

Categories