flutter_adyen 0.1.2 copy "flutter_adyen: ^0.1.2" to clipboard
flutter_adyen: ^0.1.2 copied to clipboard

outdated

Flutter plugin to integrate with the Android and iOS libraries of Adyen.

flutter_adyen #

Flutter plugin to integrate with the Android and iOS libraries of Adyen. This library enables you to open the Drop-in method of Adyen with just calling one function.

Drop-in method #

Prerequisites #

Before calling the plugin, make sure to get the payment methods from Adyen. For this, call the a /paymentMethods endpoint:

POST: https://checkout-test.adyen.com/v46/paymentMethods // Version number might be different Payload should contain the merchant account

{
  "merchantAccount": "<YOUR ACCOUNT>"
}

Append your API key and a content-type to the headers:

Content-Type: application/json
X-API-KEY: AQEohm.......zyMjCt

Make sure to run this command from your backend. It's not recommended to store the API key in the front end!

Init #

Init the plugin.

FlutterAdyen.init(
   baseURL: 'https://pal-test.adyen.com',
);

baseURL Test account: https://pal-test.adyen.com Otherwise, the URL will be specific to your company and provided by Adyen.

Start payment #

Pass the JSON to the plugin as a string.

1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Flutter plugin to integrate with the Android and iOS libraries of Adyen.

Repository (GitLab)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_adyen