-
Notifications
You must be signed in to change notification settings - Fork 3
Setup
Bodia edited this page Mar 29, 2021
·
1 revision
This page describes the Akurateco iOS SDK Setup guide.
You should get the following information from the administrator to begin working with the Payment Platform.
Info | Description |
---|---|
CLIENT_KEY | Unique key to identifying the account in Payment Platform (used as request parameter) |
CLIENT_PASS | Password for Client authentication in Payment Platform (used for calculating hash parameter) |
PAYMENT_URL | URL to request the Payment Platform |
Where to get this information? Follow the introduction guide.
The Akurateco iOS SDK credentials are the mirror of the Payment Platform fields. See above.
- Call the SDK initialization in the
AppDelegate
:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
...
let credentials = AkuratecoCredential(clientKey: "merchant-client-key",
clientPass: "merchant-client-pass",
paymentUrl: "merchant-payment-url")
AkuratecoSDK.config(credentials)
...
}
-
In case the SDK is not initialized the
fatalError("Akurateko SDK is not configured")
will be thrown. -
To use the testing environment, please use test cards.
Website: https://akurateco.com
Phone: +31-638-7642-70
Email: admin@akurateco.com
Address: Akurateco BV, Kingsfordweg 151, 1043 GR Amsterdam, The Netherlands
© 2014 - 2021 Akurateco. All rights reserved.