dio_refresh_bot 1.0.2 copy "dio_refresh_bot: ^1.0.2" to clipboard
dio_refresh_bot: ^1.0.2 copied to clipboard

outdated

Dio interceptor which makes refresh token mechanism simple, flexible and reactive.

example/example.dart

import 'package:dio/dio.dart';
import 'package:dio_refresh_bot/dio_refresh_bot.dart';

// ignore_for_file: avoid_print
void main() {
  final dio = Dio();

  final storage = BotMemoryTokenStorage<AuthToken>(
    initValue: () {
      // Todo: read from storage
    },
    onDeleted: () {
      // Todo: delete from storage
      return null;
    },
    // Todo: update storage with new token
    onUpdated: (token) {},
  );

  dio.interceptors.add(
    RefreshTokenInterceptor<AuthToken>(
      dio: dio,
      tokenStorage: storage,
      refreshToken: (token, tokenDio) async {
        final response = await tokenDio.post<dynamic>(
          '/refresh',
          data: {'refreshToken': token.refreshToken},
        );

        return AuthToken.fromMap(response.data as Map<String, dynamic>);
      },
    ),
  );
  // listen to the token changes
  storage.stream.listen(print);

  // listen to auth state changes
  storage.authenticationStatus.listen(print);
}
29
likes
0
pub points
70%
popularity

Publisher

verified publisherflutterbots.dev

Dio interceptor which makes refresh token mechanism simple, flexible and reactive.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

bot_storage, dio, meta, rxdart

More

Packages that depend on dio_refresh_bot