0 purchases
cloudbase auth nullsafety
Cloudbase Auth Nullsafety for Flutter #
⚠️ 特别注意(warning)
目前所有空安全版本均为测试版本,请勿在生产使用
腾讯云·云开发的 Flutter空安全(民间改制) 插件,更多的云开发 Flutter 插件请见云开发文档。
💔 iOS可能遇到的错误 #
Include of non-modular header inside framework module
fix: Targets -> Build Settings -> Search Allow No -> Setting Allow Non-modular Includes In Framework Modules: Yes
安装 #
在 flutter 项目的 pubspec.yaml 文件的 dependencies 中添加
dependencies:
cloudbase_core_nullsafety: ^0.0.3
cloudbase_auth_nullsafety: ^0.0.4
copied to clipboard
简单示例 #
import 'package:cloudbase_core_nullsafety/cloudbase_core_nullsafety.dart';;
import 'package:cloudbase_auth_nullsafety/cloudbase_auth_nullsafety.dart';
// 初始化 CloudBase
CloudBaseCore core = CloudBaseCore.init({
// 填写你的云开发 env
'env': 'your-env-id'
});
// 获取登录对象
CloudBaseAuth auth = CloudBaseAuth(core);
// 获取登录状态
CloudBaseAuthState authState = await auth.getAuthState();
// 唤起匿名登录
if (authState == null) {
await auth.signInAnonymously().then((success) {
// 登录成功
print(success);
}).catchError((err) {
// 登录失败
print(err);
});
}
// 微信登录
auth.signInByWx(wxAppId:'Your wxAppId', wxUniLink:'Your wxUniLink');
// 绑定微信
auth.linkWithWeChat(wxAppId:'Your wxAppId', wxUniLink:'Your wxUniLink',withUnionId: false);
// 自定义登录
auth.signInWithTicket(ticket: 'Your custom login ticket');
// 绑定自定义登录
auth.linkWithTicket(ticket: 'Your custom login ticket');
// 发送短信验证码
auth.sendPhoneCode(phone: 'Your phone number');
// 短信登录
auth.signInWithPhone(phone: 'Your phone number', code: 'Your sms code');
// 短信注册
auth.signUpWithPhone(phone: 'Your phone number', code: 'Your sms code');
// 强制重置密码
auth.forceResetPwd(phone: 'Your phone number', code: 'Your sms code', passwd: 'Your password');
copied to clipboard
详细文档 #
云开发·登录验证
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.