I've been looking for ways to implement Authorization & Capture in android using paypal sdk. I only found it doable using the website payment standard. Is it doable in the mobile platform as well by using the paypal sdk?
I was able to implement authorization and capture using the Mobile Express Checkout Library of paypal found here.
Related
I am developing an demo application to integrate Amazon Pay In android application. Is there any proper documentation for the same. Thanks in advance
For using Amazon Pay in a mobile app, I'd recommend you to create a (or re-use an existing) web-based Amazon Pay integration as described in the official documentation. For most scenarios the "One-time payments" guide will be the integration guide you want to refer to. You would simply call this web page then from the Android app (or iOS app, or whatever) and send the buyer back to the app after the payment has been completed.
As the integration is independent from Android in this scenario, you can of course use any programming language you prefer. Using PHP, Java, C# (or other .NET languages), Ruby or Python is recommended though as there are officially supported SDKs available for those.
For other "in-app" integration options, you should contact Amazon Pay directly.
When I tried to find official documentation for android for integrating paypal express, I found
Important: PayPal Mobile SDKs are now Deprecated and only existing integrations are supported. For all new integrations, use Braintree Direct or Express Checkout'.
I couldn't find any android documentation in the recommended pages as well. Is it something like we have to use the REST API provided by them in android as well?
Please guide me how I can implement paypal in android.
Did you look at the Braintree SDK? It will tie PayPal, direct credit card processing, Venmo, Apple and Google Pay in a single integration. That's what I would recommend.
Specifically, you should use their Drop In UI. Here's a guide for Android integration with Braintree.
Sorry, i know its not programming or code related question.
Anyone here integrate Janrain in their mobile solution. Janrain has mobile app SDK for iOS and Android but we don't want to include external SDK/Library.
Can we achieve all functionality/features using Janrain RESTFul API? e.g. Login, Social Login, Registration..
Or it is mandatory to have janrain SDK in mobile app?
Please share janrain integration detail in you have in your application.
It is not mandatory to have the Janrain SDK in your mobile app. The Janrain Mobile SDK is really just a library of code that interacts with the Janrain OAUTH RESTful API endpoints.
http://developers.janrain.com/rest-api/methods/authentication/oauth/auth_native/
The Mobile SDK does make handling the Social Identity Provider interactions a little simpler but in general these are all using Social Login endpoints as well. Not all of the Social Login endpoints are fully documented for "build-your-own" development. However, if you look at the Mobile SDK source code and spend some time understanding the sample application that comes with the Mobile SDK then it should be pretty easy to reverse engineer what endpoints are being used.
If you are working for a Janrain Enterprise customer then you should contact your account manager to see if you can get some official assistance and perhaps additional information that isn't found on the web site.
I want to intagrate paypal into my android app, for that, I have integrate the paypal android sdk, but it doesn't fit to all my needs, because I need to custome langage and alert and so on
for that I am wondering if I can integrate the resp api sdk php of paypal into my android app and create my own view in android and communicate directly with my php server which in turn will communicate with paypal server
here is the php rest api here
what yould you advise me
thank you in advance
What is it that the PayPal Android SDK does not do for you, and/or what language do you need that we do not support? We have a pretty extensive set of languages for you to localize with.
I've referred lot of things for payment processing system to android app. It proviedes Paypal's SDK as best to do. But, i've little confusion in there for below image -
What's the difference between these two - Mobile Express Checkout Library & Mobile Payment Libraries. And, which one will i choose to do the payment processing for android app. Anyone please, explain with brief explanation please. Thanks in Advance.
I hope this will help you :
Mobile Payment Libraries (MPL): Add in-app payments by just adding a
Pay with PayPal button to your iOS or Android app. PayPal’s library
will display an in-app UI to ask the buyer to log in and complete the
payment. It's the quickest way to add payments into your app, and you
can do it without having back-end services running.
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.
I got this information from here.