iphone application paypal payment integration [closed] - iphone

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 10 years ago.
Improve this question
I want to add paypal payment to my iphone application what is the best way of doing it? will apple approve the app if the payment transaction will be done within application?
Thanks!

There are two ways to integrate Paypal with the iOS application i.e.
1) MPL - Mobile payments library : Launces Paypal window on the top of application window.
2) MECL - Mobile express checkout library : Launces in a webview
You can use MECL to implement paypal.
For dev purpose, they have provided with sandbox inputs to be used. Once you develop the app, you need to submit it to paypal. Paypal will verify and test your application for various payment scenarios and security as well. Once they approve, they(Paypal) will provide you with a production env id number. USe that number in the app and upload it to app store.
Apple uses In app purchase to sell digital goods. So it does not allow to use any other payment gateway for selling digital content.

Paypal has provided an SDK for iOS. Simple Google should have got you this.
And as far your other question is concerned. This statement should clarify things:
Hello, Apple policy restricts from using our library for accepting digital goods. Use our library should be for hard goods, donations, personal payments and services only.

Related

Requesting an Uber ride with Apple Pay as a payment method [closed]

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 5 years ago.
Improve this question
Is there a way to request an Uber ride through the rest API with Apple pay as the payment method?
Currently, setting Apple Pay (payment_method_id, https://developer.uber.com/docs/riders/references/api/v1.2/payment-methods-get) when requesting the ride fails.
Is there a way to access a web view hosted by Uber that would allow the user to authorize the payment through Touch ID and use Apple pay?
confirmed that apple_pay is not available to be used as a payment method through the API when posting a request.
In terms of your question "Is there a way to access a web view hosted by Uber that would allow the user to authorize the payment through Touch ID and use Apple pay?" - No, this is not an option.
It is true that apple_pay (and android_pay) can be a payment method for a user's account and thus you could argue should be returned in get-payment-methods. However as it cannot be used in the API it perhaps should be filtered. Uber API team will look into possible solutions here. Thanks and hope this was helpful!

ASK: How to get recurring test account on PayPal Payment Pro /PayFlow? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I have signup test account for PayPal Payment Pro/PayFlow (at this url https://manager.paypal.com). and now I want to test Recurring Billing Service on PayFlow, but it need to pay $99 for setup fee and another fee regarding monthly fee and transaction fee.
I just want to get this Recurring Billing Service for testing mode, without pay it first. how can i get this? or maybe enable this recurring feature without paying it?
how to get this service for testing only without pay it first?
Thanks in advanced.
In order to test the recurring billing there is no need to purchase it . Once you login to your manager account just click on the advertisement to sign up for the recurring billing and click on continue and that's it . Recurring should be added in the test mode .
You can check whether the recurring billing is added or not by clicking on the "Home" and then it should something like below :

How order status was chaged in woocommerce after PayPal EC Payment Finished? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 4 years ago.
Improve this question
I am using PayPal Express checkout using WooCommerce I send the information to PayPal from my checkout page and after return to My Site after Payment was completed. I don't know how was my order status is change pending to processing?
When using Woo's Plugin you have to define an IPN for the orders to update automatically. Here's some info to help.
You can do one or the other here.
Use AngellEye's Plugin for IPN
OR
Walkthrough in setting it up manually for WooCommerce
View this guide as it is very thorough using AngellEye
Hope this helps 8^)
To integrate PayPal Express Checkout, 2 best plugins to use are
PayPal for WooCommerce by Angell EYE
WooCommerce PayPal Checkout Gateway by WooCommerce
NOTE: Before these plugins are installed, make sure that you have backup of your website so if these plugins cause any issues on the website/ crash the website, we still have a backup.
This will take care of the order status when the order is placed.
Above plugins are reliable and used by most of the Merchants on their website.

Which paypal service should I use [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
In my web application (spring mvc + jsp), I have to implement payment process which I will take the money of someone (i.e buyer), deposit to someone else (i.e seller), and keep a portion for myself (i.e commission). I would like the process will perform on my website instead of redirecting to paypal. I have tried to search for the service that I need, but after a while of reading it, I am very confused. I am thinking I may need some mix between Adaptive Payment or Website Payment Pro. However, I think that Paypal would also provide a service that I am searching for, but I haven't found yet. So would anyone mind to help me out of this confusion please?
In order to do the payment split as part of checkout you would need to use Adaptive Payments, specifically the Pay API with a chained payment. Unfortunately, you can't avoid redirecting the user to PayPal with this method.
If that's a must, then you'll need to go with Payments Pro, but then you can't do the split within a single checkout, and you can't split the fees up among the receivers. So you'll end up paying a fee when you receive the money, and then when you send the money there will be another fee there, too. Also, if you go that route you would be responsible for any chargebacks that occur, so this is simply not recommended.

initial steps for Paypal integration in Ios [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to implement paypal in my app(because i can not use in-App purchase for physical goods).
I want to know the initial process to implement the paypal. i.e any app_key, money receiver account info etc.
I want to know what kind information will be required(which paypal will require) to start the paypal integration
How it will know that to whom account money to transfer.
There are two ways to integrate Paypal with the iOS application i.e. 1) MPL - Mobile payments library : Launces Paypal window on the top of application window. 2) MECL - Mobile express checkout library : Launces in a webview
You can use MECL to implement PayPal. PayPal has provided sandbox inputs to be used. Once you develop the app, you need to submit it to paypal. Paypal will verify and test your application for various payment scenarios and security as well. Once they approve, they(Paypal) will provide you with a production env id number. USe that number in the app and upload it to app store.
And here is the link to PayPal Dev center which has all the details you need.
https://developer.paypal.com/webapps/developer/docs/integration/mobile/ios-integration-guide/