- Notifications
You must be signed in to change notification settings - Fork0
A Flutter plugin that wraps the official SDK of HyperPay.
License
YazeedAlKhalaf/hyperpay
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
this plugin is not official.
This plugin is a wrapper around the official SDK ofHyperPay.
- 😌 Easy to setup!
- 🚀 Uses the official SDK under the hood!
- 👾 Ability to create custom UI!
- 🧪 Fully tested!
- 🔋 Batteries included!
Follow the official guide to setup the two endpoints:
- For getting a
checkoutId. - For getting the status of a payment using its
checkoutId.
Official Guide:https://wordpresshyperpay.docs.oppwa.com/tutorials/mobile-sdk/integration/server
This will guide your through the process of implementing the iOS part that is needed to make the plugin function correctly.
If you face any problems, look at the example app and how it is implemented. 😉
- Xcode 12 and iOS 14 SDK
- iOS 10.0+ deployment target
Register a custom URL scheme:
- In Xcode, click on your project in the Project Navigator and navigate toApp Target > Info > URL Types
- Click [+] toadd a new URL type
- Under URL Schemes,enter your app switch return URL scheme. This scheme must start with your app's Bundle ID. For example, if the app bundle ID is
com.companyname.appname, then your URL scheme could becom.companyname.appname.payments. - Add scheme URL to a whitelist in your app's Info.plist:
<key>LSApplicationQueriesSchemes</key> <array> <string>com.companyname.appname.payments</string> </array>
Edit your Podfile that is located under your project's iOS folder:
- Uncomment the line that looks something like this:
# Before# platform :ios, '9.0'# Afterplatform:ios,'10.0'
- Add this code code snippet to your Podfile:
post_installdo |installer|installer.pods_project.targets.eachdo |target|flutter_additional_ios_build_settings(target)# from here.target.build_configurations.eachdo |config|config.build_settings['IPHONEOS_DEPLOYMENT_TARGET']='10.0'end# to here.endend
This makes sure that all packages and plugins you use have a deployment target of
10.0.You Podfile should look similar to:# Uncomment this line to define a global platform for your projectplatform:ios,'10.0'# some code herepost_installdo |installer|installer.pods_project.targets.eachdo |target|flutter_additional_ios_build_settings(target)target.build_configurations.eachdo |config|config.build_settings['IPHONEOS_DEPLOYMENT_TARGET']='10.0'endendend
not implemented yet.
not implemented yet.
All our error codes start withhyperpay- prefix.To handle errors you have to catchPlatformException.
| Error Code | Description |
|---|---|
hyperpay-method-not-found | This indicates that the method you invoked through the channel does not exist. |
hyperpay-transaction-error | This indicates that the transaction has an error. |
hyperpay-transaction-failure | This indicates that the transaction failed for unknown reason. |
hyperpay-card-payment-params-error | This indicated that the card payment params has an error. |
About
A Flutter plugin that wraps the official SDK of HyperPay.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.