Page 1 of 1

Paypal process without redirect to Paypal site

Posted: Tue Jun 26, 2012 5:33 am
by sateesh.rize
Hi Frineds,

I am trying to do payment process with Paypal with out redirect to paypal site. Is it possible to implement in php? If possible, can you please say the procedure?


Thanks
Sateesh

Re: Paypal process without redirect to Paypal site

Posted: Tue Jun 26, 2012 10:13 am
by Jonah Bron
I believe the API for paying without going to their site is called PayPal Payments Pro.

Re: Paypal process without redirect to Paypal site

Posted: Tue Jun 26, 2012 12:10 pm
by greyhoundcode
They've also just released a lower cost offering called Advance or Advantage or something - basically allows checkout to take place within an iframe on your site, think of that what you will 8O

Re: Paypal process without redirect to Paypal site

Posted: Wed Jun 27, 2012 4:54 pm
by John Cartwright
What's wrong with processing payments in an iframe? As long as it's SSL encrypted, of course, that's fine.

In fact, that is much more secure than having to collect that information and processing it on your server through paypal API.

Re: Paypal process without redirect to Paypal site

Posted: Mon Jul 02, 2012 12:49 pm
by greyhoundcode
John Cartwright wrote:What's wrong with processing payments in an iframe? As long as it's SSL encrypted, of course, that's fine.
Fine from a security perspective.

From an accessibility perspective I don't feel iframes are a great choice though and, from a merchant's perspective, since they obviously would choose this approach to provide a more "professional" checkout experience where the user doesn't seem to leave their own website, they would very likely also have to spend more time/money/effort customizing the embedded checkout page to whatever degree is facilitated by the service provider.

I didn't say that is bad or wrong, I just said make of it what you will.