RxReader / wechat_kit

Flutter版微信登录/分享/支付 SDK
MIT License
726 stars 123 forks source link

iOS 授权登录 没回调 #99

Closed bear-zyy closed 2 years ago

bear-zyy commented 2 years ago

iOS授权登录 没有回调 按文档写的

late StreamSubscription _respSubs = Wechat.instance.respStream().listen(_listenResp); void _listenResp(BaseResp resp) { if (resp is AuthResp) { _authResp = resp; final String content = 'auth: ${resp.errorCode} ${resp.errorMsg}'; _showTips('登录', content); }

}