In one of our project we have requirement of payment processing. We had few options along with the Paypal. But regarding Paypal integration of iPhone SDK does APPLE allow payment processing within the application ?
Application intend to sale tangible/intangible products for example it can be coupon or any service like hair trimming. In this case can we use Paypal integration ?
We had hard time to find out the same, so any one know about it please let us know.
Apple allow using browser
checkout this link
https://www.x.com/community/ppx/xspaces/mobile
and see
Mobile Express Checkout Library (MECL): If you want the PayPal checkout flow to be in a browser or webview, you can use our Mobile Express Checkout Library. This is useful if you already have a express checkout integration completed for your website or if app store policies require you to complete your checkout flow in a browser. This library will help you integrate the mobile web flow into your app.
Related
I’m developing a delivery application that will work with PayPal for payments. Ionic/Cordova has a native library that makes things easy, yet the flow is not the way i’d like it to be.
With “PayPal-Cordova-Plugin”, the authentication window opens for every payment and the user must click the button to confirm the payment.
What I would like to implement was something more direct, transparent. The user would authenticate with PayPal within my application and with the probable token that would receive this authentication, I would execute the checkout requests (an example would be the payment by PayPal on Uber).
With the PayPal developer documentation I could not find a way to perform this implementation on Ionic, so I would like help with that.
The old PayPal Mobile SDKs used by the cordova plugin are ancient. Do not use those. Do not use those for anything. If you try to use those, you are going to have a bad time.
The first paragraph at the top of the Readme of https://github.com/paypal/PayPal-Cordova-Plugin points you to the things you should be using instead.
As is mentioned there, PayPal Express Checkout via the Braintree Mobile SDK is a worldwide option for those who need a native SDK. It is documented here: https://developer.paypal.com/docs/accept-payments/express-checkout/ec-braintree-sdk/get-started/
You will need a webservice for the server-side portion.
Working on Android Application which provides platform for users to sell and buy their used products. Below is the scenario of payment screen when User(buy) want to bought an item.
How can i do this payment with paypal adaptive payment. I found something Parallel payment api but in this api doing parallel payment form owner's account need same thing with dynamic customer account.Every thing needed in PHP to develop web service will be used in android application.
Thanks.
Adaptive Payments, specifically the Pay API. That is how you would do the split payment as either parallel or chained.
From mobile apps I typically build the web services on a server, so you can still write everything in PHP and just pass data to and from PayPal back to the app through the PHP service. Then you make simple serice requests to your own PHP script and have it just return a basic JSON response or whatever you want to work with in the mobile app.
There may be more direct ways to get it done, but that's what I've always done and it works well. Allows you to use your web server for more detailed logging, too.
Is the a braintree iOS SDK for native iOS app payment system integration that uses paypal payments too?
I cannot seem to find one. Is there a third party sample code?
Or is there a guide on how to do it?
I work at Braintree. If you have more questions, please reach out to our support team.
Yes, the Braintree iOS SDK includes PayPal support:
PayPal
Braintree offers a few options when accepting PayPal payments. First,
you'll need to choose whether you would like to use our Drop-In UI or
a custom integration.
Vault vs. Checkout
Next, you can choose between our Vault and Checkout flows. Below is a
comparison of the two options:
Vault Compatibility: iOS, Android, and web
Checkout Compatibility: Web only
How can I integrate Paypal Here with Openbravo POS?
The workflow I'm looking for is:
Cashier selects card payment on Openbravo POS
Bill is automatically transferred to Paypal Here
Customer completes payment on Paypal Here
Confirmation is automatically transferred to Openbravo POS
I see there is an API for integrating iOS applications with Paypal Here, so this is certainly possible. It would be quite complicated to write an iOS application to do this; perhaps there's a simpler way?
I have now implemented my own system to do this. It consists of:
OpenBravoPOS scripting and a Java class to upload transaction details and wait for a response
A web application that receives the transaction details
A mobile web page that uses the Sideloader API to pass transaction details into Paypal Here
A callback on the web app that receives the transaction ID
This is working fine in a real shop. If you're interested in this solution, see my website.
To develop a fully-integrated solution, the PayPal Here SDKs for iOS and Android are now available on the PayPal Developer site:
https://developer.paypal.com/webapps/developer/docs/integration/mobile/pph-sdk-overview/
There is also a version for Windows 8.1+ in Beta, available upon request. You can email DL-PayPal-Here-SDK#ebay.com for help with any of these.
I'm am trying to figure out which approach I should take when integrating Paypal into my iPhone application. Currently I am not using any of the Paypal libraries in my app. Instead I'm using a UIWebview to open up a url to the Paypal's website and having the customer checkout from their, similar to this:Click here! I'm wondering if using the Mobile Express Checkout Library or Mobile Payment Libraries are they PCI Complaint. And where can I find documentation that states this on the Paypal's site or Developer site.
Not sure about documentation, but as both of these methods ensure PayPal collects the card data, it's for PayPal to be PCI compliant.