Flutter Tinkoff Acquiring SDK

Read this in Russian

Acquiring SDK allows you to integrate Tinkoff Internet Acquiring into mobile applications for iOS and Android platforms.

Available API Documentation.

SDK Features

  • Making payments (including recurring payments);
  • Saving customers bank cards;
  • Getting information about customers and saved bank cards;
  • Management of saved bank cards;
  • Integration with online checkouts;

Installing

Add this to your package's pubspec.yaml file:

dependencies:
  tinkoff_acquiring: 2.1.0

Before usage

To get started with the SDK, you'll need:

  • Terminal key - seller's terminal key;
  • Password - terminal password;
  • Public key – public key. Used to encrypt data. Required to integrate your application with Tinkoff Internet acquiring.

These values are issued in your personal account after connecting to Tinkoff Internet Acquiring.

SDK allows you to configure operating mode (debug / prod), by default - debug. The SDK also allows you to configure request proxying, by default all requests go to Tinkoff servers.

To configure the operation mode, set the following parameters:

final TinkoffAcquiring acquiring = TinkoffAcquiring(
  TinkoffAcquiringConfig(
    terminalKey: terminalKey,
    password: password,
    debug: false,
  ),
);

If you want to use a proxy, use the following constructor:

final TinkoffAcquiring acquiring = TinkoffAcquiring(
  TinkoffAcquiringConfig.proxy(
    proxyUrl: 'https://server.com/'
  ),
);

Example

The Example is in the corresponding folder

SDK workflow

Libraries

tinkoff_acquiring_core
Является базовым модулем для работы с Tinkoff Acquiring API. Модуль реализует протокол взаимодействия с сервером и позволяет не осуществлять прямых обращений в API.
tinkoff_acquiring_ui
Содержит интерфейс, необходимый для подтверждения 3D Secure.
tinkoff_acquiring_utils
Содержит дополнительные инструменты для разработки