簡體   English   中英

Flutter:當使用 ferry (graphql) 客戶端令牌過期時如何刷新令牌?

[英]Flutter: How to refresh token when token expires with ferry (graphql) client?

如何在渡輪(graphql)客戶端中的 flutter 中使用刷新令牌檢索新令牌?

突變后的響應如下所示:

{
  "data": {
    "auth_login": {
      "access_token": "ey...",
      "refresh_token": "Ua...",
      "expires": 900000
    }
  }
}

我試圖用 fresh_graphql 來完成它,但它不起作用。 authenticationStatus 始終未經過身份驗證,但令牌始終合法。

執行:

import 'dart:math';

import 'package:ferry/ferry.dart';
import 'package:ferry_hive_store/ferry_hive_store.dart';
import 'package:fresh_graphql/fresh_graphql.dart';
import 'package:gql_http_link/gql_http_link.dart';
import 'package:hive/hive.dart';

Future<Client> initClient(String? accessToken, String? refreshToken) async {
  Hive.init('hive_data');

  final box = await Hive.openBox<Map<String, dynamic>>('graphql');

  await box.clear();

  final store = HiveStore(box);

  final cache = Cache(store: store);

  final freshLink = await setFreshLink(accessToken ?? '', refreshToken);

  final link = Link.from(
      [freshLink, HttpLink('https://.../graphql/')]);

  final client = Client(
    link: link,
    cache: cache,
  );

  return client;
}

Future<FreshLink> setFreshLink(String accessToken, String? refreshToken) async {
  final freshLink = FreshLink<dynamic>(
    tokenStorage: InMemoryTokenStorage<dynamic>(),
    refreshToken: (dynamic token, client) async {
      print('refreshing token!');
      await Future<void>.delayed(const Duration(seconds: 1));
      if (Random().nextInt(1) == 0) {
        throw RevokeTokenException();
      }
      return OAuth2Token(
        accessToken: 'top_secret_refreshed',
      );
    },
    shouldRefresh: (_) => Random().nextInt(2) == 0,
  )..authenticationStatus.listen(print);

  print(freshLink.token);
  print(freshLink.authenticationStatus);

  await freshLink
      .setToken(OAuth2Token(tokenType: 'Bearer', accessToken: accessToken));

  return freshLink;
}

任何解決方案,即使沒有 fresh_graphql,也將不勝感激!

我初始化渡輪客戶端的方式如下。

  1. 創建一個繼承自 AuthLink 的 CustomAuthLink。

     import 'package:gql_http_link/gql_http_link.dart'; class _CustomAuthLink extends AuthLink { _CustomAuthLink(): super( getToken: () { //... // Call your api to refresh the token and return it //... String token = await... // api refresh call return "Bearer $token" } ); }
  2. 使用此自定義身份驗證鏈接來初始化您的客戶端。

     ... final link = Link.from([freshLink, HttpLink('https://.../graphql/')]); ... Client( link: _CustomAuthLink().concat(link), )...
  3. 我不確定您是否還需要 freshLink。 您可能想刪除它並將HttpLink(...)直接傳遞給.concat(...)方法。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM