ソースを参照

1、淘宝授权提示逻辑修改

tags/0.0.15+8^0
PH2 3年前
コミット
2ca45e4313
1個のファイルの変更5行の追加2行の削除
  1. +5
    -2
      lib/util/taobao/taobao_auth.dart

+ 5
- 2
lib/util/taobao/taobao_auth.dart ファイルの表示

@@ -61,11 +61,14 @@ class TaobaoAuth {
}

if (!EmptyUtil.isEmpty(resultMsg["accessToken"])) {
Fluttertoast.showToast(msg: '授权成功~');
// Fluttertoast.showToast(msg: '授权成功~');
print("access 成功 $resultMsg");
Map<String, dynamic> params = {};
params['access_token'] = resultMsg["accessToken"]?.toString();
await NetUtil.post('/api/v1/tbredirect', params: params, method: NetMethod.POST);
var result = await NetUtil.post('/api/v1/tbredirect', params: params, method: NetMethod.POST);
if (NetUtil.isSuccess(result)) {
Fluttertoast.showToast(msg: '授权成功~');
}
} else {
print("access 失败 $resultMsg");
Fluttertoast.showToast(msg: "access 失败 $resultMsg");


読み込み中…
キャンセル
保存