pokepay_flutter_sdk 1.0.6 copy "pokepay_flutter_sdk: ^1.0.6" to clipboard
pokepay_flutter_sdk: ^1.0.6 copied to clipboard

discontinued
PlatformAndroidiOS

SDK for pokepay

Pokepay Flutter SDK #

API Document reference #

Please refer to this document

Install #

  1. In the pubspec.yaml of the project, add the following:
dependencies:
   pokepay_flutter_sdk: ^YOUR_VERSION
  1. Then run this
flutter pub get
  1. Then you can use Pokepay SDK in your project.

Usage #

  1. How to use OAthClient with FlutterWebAuth
PokepayOAuthClient oauthClient = PokepayOAuthClient(clientId: YOUR_CLIENT_ID,clientSecret: YOUR_CLIENT_SCRET, env: APIEnv.DEVELOPMENT);
String authUrl = oauthClient.getAuthorizationUrl();
String result = await FlutterWebAuth.authenticate(url: authUrl, callbackUrlScheme: 'pocketchange'));
AccessToken accessToken = await oauthClient.getAccessToken(Uri.parse(result).queryParameters['code']));
  1. How to use the client
PokepayAPI(env: APIEnv.YOUR_ENV,accessToken: YOUR_ACCESS_TOKEN,);
  1. Call API, for example, create account
PokepayAPI api = PokepayAPI(env: APIEnv.YOUR_ENV,accessToken: YOUR_ACCESS_TOKEN,);
Account createdAccount = await api.createAccount(name:your_wallet_name, privateMoneyId: your_private_money_id);
0
likes
80
pub points
0%
popularity

Publisher

unverified uploader

SDK for pokepay

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, intl, json_annotation, logger

More

Packages that depend on pokepay_flutter_sdk