Skip to content

dynamifylimited/cordova-plugin-adyen

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cordova Adyen mobile plugin

A plugin for Adyen pos implementation for android and iOS.

Installation

cordova plugin add https://github.com/abhinax4991/cordova-plugin-adyen

## Usage

`requestCharge()` initiates pay session.

const credentialsRequestBody = { currencyCode, countryCode, storeId: $scope.store.id, amount: saleAmount }

AdyenService.getAdyenCredentials(credentialsRequestBody).then(function(credentialsData) { cordova.plugins.adyen.requestCharge(credentialsData.data, function (requestChargeData) { // in success callback, raw response as encoded JSON is returned. Pass it to your payment processor as is.

});

});


All parameters in request object are required.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Swift 50.6%
  • Kotlin 46.1%
  • JavaScript 3.3%