Bläddra i källkod

1.授权时更新taobo状态

tags/0.0.13+2
“yanghuaxuan” 3 år sedan
förälder
incheckning
f319697f68
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. +2
    -1
      lib/util/taobao/taobao_auth.dart

+ 2
- 1
lib/util/taobao/taobao_auth.dart Visa fil

@@ -50,13 +50,14 @@ class TaobaoAuth {
// result = await FlutterAlibc.openByUrl(url: url, backUrl: "alisdk://", isAuth: true);
print("name: $name" + "\n" + "alibcAppKey: $alibcAppKey");
var resultMsg = await FlutterAlibc.taoKeLoginNew(name, alibcAppKey);
FlutterAlibc.loginOut();
if (!EmptyUtil.isEmpty(resultMsg["accessToken"])) {
print("access 成功 $resultMsg");
Map<String, dynamic> params = {};
params['access_token'] = resultMsg["accessToken"]?.toString();
await NetUtil.post('/api/v1/tbredirect',
params: params, method: NetMethod.POST);

} else {
print("access 失败 $resultMsg");
Fluttertoast.showToast(msg: "access 失败 $resultMsg");


Laddar…
Avbryt
Spara