Credit card payment using paypal in Iphone application - iphone

I want to implement like this application
http://itunes.apple.com/us/app/paypodd/id341546114?mt=8
Different kind of credit card payment through PayPal in my native iPhone application. I searched, most documents in paypal sites, they are showing, I need to entry paypal account/email address also to transact. But upon the application, I can see, directly he entered only credit card name, careditcard type, cvv and amount for his transaction?
Anybody any idea? How i implement this??

That application is using the PayFlow Pro merchant API:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/howto_gateway_payflowpro
Note that PayFlow Pro requires an existing merchant account -- you can't just use it to send money to your Paypal account. (This is probably why the iOS application you linked to has had poor reviews: the description doesn't make it clear that the application is useless on its own.)

Related

paypal the merchant does not accept payment of this type

We are having major trouble when we pay using direct credit card payment from mobile application development. To the live transaction we cannot able to use direct credit card payment.
While using Credit Card: "The merchant does not accept payments of this type."
We are developing the mobile application using ionic framework. Using the ionic-paypal plugin we implemented and Sandbox flow has been verified success using Paypal REST API. For the live account not working. Paypal develper page i cannot able to enable the "credit card payment" from the following url "https://developer.paypal.com/developer/accountStatus"
Any additional permission require to live transaction or any other steps and solutions to complete this
PayPal REST API Credit Card payment instrument currently available for US and UK PRO account. If you tried with some other countries except from these two, you'll get an error.
You can read here

Paypal Vault and IOS mobile SDK

Can we store or use the vault feature of paypal via the IOS Mobile SDK?
I know we have to use the REST API to verify the payment after it has been made - Can we also call the vault API to store the customers credit card so that the customer doesn't have to renter their credit card details again when using our app?
Thanks!
Dave from PayPal here.
Within the PayPal iOS SDK we do store the customer's credit card information (using the PayPal vault), so that your customer can in the future make another payment using your app without needing to re-enter that information.
For this storage to occur, when you create the PayPalPaymentViewController you must pass in a non-nil payerId string. If for a subsequent payment you provide the same payerId, then the previously stored credit card information will be retrieved.

PayPal API to pay via credit card

I need to allow users to pay via Credit Card on my site. I'm trying to find suitable API option but can't find it. I have implemented payment via PayPal so far, but now I need to allow users to pay via credit card without account on PayPal.
Anyone knows what specific payment type that is?
Here is one way:
First, you'll need a Website Payments Pro merchant account with PayPal. Then, become familiar with the DoDirectPayment API, which will allow you to
process transactions on your site with PayPal working in the background. Customers will be able to fill out their credit card information, etc., on your site without visiting PayPal directly.
This also means that customers will not be required to have a PayPal account in order to make a transaction on your site.
If you proceed this way, you will need SSL certificates, and are required to implement Express Checkout for customers who do not want to make their transaction on your site.
Sample Code to get your feet wet. Good luck!

Paypal integration scenarios

My client asked to integrate his e-commence web site with paypal. But he need to do all credit card payments within his website(without moving to paypal site). e-commence web site is Java based application
When the order is placed, need to get some transaction number and continue order. Client need to process his payment when the delivery is ready.
Is Payflow Pro suitable for this requirement?
What is the suitable method to do this kind of transaction?
If you want to process your payments within your site, but still using PayPal, then you need the subscriber service "Website Payments Pro".
The "Website Payments Standard" service is free (excluding transaction commission) but a buyer leaves your site, goes to paypal to pay, and then returns.
PayPal Comparison Table - Standard vs. Pro
PayFlow Pro is also suitable for this; you can process PayPal payments as easily as credit card payments. (Note: in my opinion it's most appropriate for a large bulk of credit-card-only transactions.) If you're developing in Java, there's already an SDK for you to use -- I had to search everywhere for a suitable third-party API for PHP.

Allow unregistered paypal users to make payments

Hi i am integrating paypal web payments standard into my shopping cart using the setup where you just send a form to paypal with all the values in hidden fields. I want to enable the option that allows people to make payments even if they are not a registered paypal user. I am sure i read somewhere in the paypal documentation but now i can't find it.
Thanks a lot
Andrew
Yes it is do-able. You can find all the info on paypal site. Here's one:
Website Payments Standard: Integration Overview
However there's one catch. If the buyer uses an email or a credit card that was registered in Paypal before, he/she will be forced to login. Else a new email address or card number has to be used.