Payment getaway with flutter - webview

I have some confusion for Payment getaway integration with flutter. Right now I can't see any pub for officially provide payment integration with flutter. So We have to do by natively and invoke by platform channel. Payment gateway for flutter
But my question is, instead of integrate payment getaway from mobile side. Can we call payment website by using web view and manage success/failure/cancel status by flutter_webview_plugin or not?
Anybody has done by web view?

Right now, there are available plugins in pub that supports payment integration with flutter. Some of the most popular are the following:
flutter_stripe
flutter_braintree
pay
flutter_paystack
Regarding the implementatio of payment gateways using webview_flutter, you can check out this medium post that shows how to integrate Paypal payment gateway with Flutter.

Related

How to integrate third party payment integration in flutter web

I want to integrate payment gateway in flutter web. Payment UI is loaded on flutter web but problem is how i get callbacks from this in flutter web.

PayPal Checkout directly using the Braintree SDK - Swift

I'm trying to integrate PayPal on my IOS app. first I tried PayPal-iOS-SDK but it's deprecated and not accepted by Apple because of using UIWebView on it. So I tried to integrate using Braintree but my country not supported yet. I don't have any options but to use Checkout through Braintree. I checked this page but it didn't help me at all. I need docs or tutorials on server side and how I will add access token from PayPal on Braintree server code.
If you tried integrate PayPal checkout through Braintree Please Help Me
Or guide me with better way to integrate PayPal.
Thanks
You've linked to the correct guide.
You'll also need resources from https://developers.braintreepayments.com/start/overview , although you won't be integrating Braintree Direct or the Drop In UI -- just PayPal.
The credentials you will use for sandbox development will be from the bottom of https://developer.paypal.com/developer/applications (Log into dashboard then scroll to bottom), and later for live they will be in https://www.paypal.com/api
You'll be using the Braintree SDK on iOS, but you also need a webservice to generate the nonce. All of this is covered in the guides.

How can i implement payment through Paypal on Sharetribe opensource?

i'm trying to implement payment through Paypal on the opensource version of Sharetribe (https://github.com/sharetribe/sharetribe). By default Sharetribe doesn't allow people to use Paypal with the opensource code. How can i create the transaction using the Paypal API? Thank you!
Sharetribe doesn't have Paypal enabled on open source version because using Paypal as a peer-to-peer payment solution requires certain extra steps for a business to set up with Paypal. Sharetribe has done this for their hosted websites, but can't be liable for open sourced versions.
The code is all there for Paypal, however most people are implementing Stripe Connect instead, as, even with the Paypal code, Stripe Connect is a simpler solution to get your marketplace up and running.
In short, there is no 'setting' to turn on Paypal. A lot of code is required to enable payments.
If you want a marketplace ready-to-go with payments enabled, use Sharetribe's hosted version. Otherwise, you'll need someone with solid knowledge of Ruby on Rails in order to implement Stripe Connect.

Is it possible to integrate first data payment integration in phonegap?

I'm currently developing a phongap application in iOS with payment processs. For that payment process i have integrated Paypal payment gateway. Now my requirement is payment with firstData. I don't know if any SDK is available for this, also what other type of payment should be possible to integrate with phonegap ?
Thanks

paypal api for blackberry

I am recently developing a business application naming MyTicket.
I want that paypal gateway should be open within the app So
for that is there any paypal api in blackberry that helps me in fulfilling this
task.
I have already tried with creating a Paypal API wrapper for example using PHP, which is used by a proxy page. Then in the BlackBerry, use standard HTTP requests to send GET/POST requests to the proxy page. The proxy page will in turn use the wrapper you created to set up payment for you and your customer.But by following this way we are able to make credit card payments with the application and entire transaction will happen at the server end and in response we may obtain a result at client end that transaction is happened successfully.
But i want that the paypal transaction will happen with the paypal account.So is there any
sdk in blackberry which helps me in fulfilling this request.
Thanks And Regards
Pinkesh Gupta
There was an API, but they dropped support. I think now the only platforms supported are iOS and Android: PayPal -Mobile Payment Libraries
(If you want to check out how the BB version was like, or if you manage to find the jar, this was the development guide:MPL Guide for BlackBerry)
Now RIM has a Payment Service that might help you: Payment Service
If you use the standard Express Checkout API within your app it'll automatically utilize the mobile checkout experience.
I use this in my jQuery Mobile Apps and it works great. If you're building a native Java app, though, you might have to use some sort of an embedded web page to make it work.

Resources