Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Paypal using Webview

Tags:

android

paypal

I want to know if i can integrate the paypal without using paypal library for android. (May be using webview)?

If yes, is there any tutorial to know the process?

Thanks in advance.

like image 237
Veer Avatar asked Jun 24 '11 13:06

Veer


1 Answers

Yes; PayPal Mobile Express Checkout. It's basically a mobile view for PayPal Express Checkout. It's dead-easy to implement. Just call SetExpressCheckout, retrieve the token, redirect to https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=TOKEN and call DoExpressCheckoutPayment when the user is back on your page.

https://developer.paypal.com/webapps/developer/docs/classic/products/mobile-express-checkout/
https://developer.paypal.com/webapps/developer/docs/classic/mobile/gs_MEC/

like image 96
Robert Avatar answered Oct 03 '22 13:10

Robert