RxReader / wechat_kit

Flutter版微信登录/分享/支付 SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iOS 授权登录 没回调

bear-zyy opened this issue · comments

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);
}

}