Flutter Code sample to help TPPs and ASPSP in using the ePayService Open Banking reference implementation platform.
- First of all you should be registered at ePayService as user.
- Go to ePayServiceOpenApi and register new application for getting [clientID] and [client secret].
- Use "epayserviceApp://epyservice_openbanking.com" for [Redirect URI]
- Open a flutter project and create an empty flutter file in [lib] directory.
- Fill this file with text below and insert secret and client id to accordingly fields
import 'package:eps_open_api_reference_app/repository/EnvVarHolder.dart';
import 'main.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
void main() async {
EnvVarHolder().env.addAll({"EPS_DEMO_CLIENT_ID":"",
"EPS_DEMO_CLIENT_ID_SECRET":""});
setupApplication();
runApp(WidgetApplication());
}- Create new "Run/Debug" configuration and "Dart entrypoint" by this file
- Run flutter project and enjoy