欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

详解如何在Flutter中集成华为认证服务

程序员文章站 2022-07-05 10:15:54
最近发现华为agc认证服务支持flutter框架了,期待这个平台的支持已经很久了,所以迫不及待接入了,关联了自己的邮箱等账号。集成步骤安装flutter环境a) 下载flutter sdk包,地址:将...

最近发现华为agc认证服务支持flutter框架了,期待这个平台的支持已经很久了,所以迫不及待接入了,关联了自己的邮箱等账号。

集成步骤

安装flutter环境

a) 下载flutter sdk包,地址:

详解如何在Flutter中集成华为认证服务

将压缩包解压到任意文件夹,例如d:\flutter

b) 将flutter命令文件添加到环境变量中,此处我添加的path为d:\flutter\flutter_windows_1.22.2-stable\flutter\bin。

c) 在android studio中点击“file-settings-plugins”,下载flutter和dart插件,重启android studio使插件生效。

详解如何在Flutter中集成华为认证服务

开通服务&创建工程

a) 在agc创建android应用并开通认证服务

b) 开启认证服务中的匿名帐号,手机帐号,邮箱帐号

详解如何在Flutter中集成华为认证服务

c) 在android studio中新建flutter工程

详解如何在Flutter中集成华为认证服务

d) 将agconnect-services.json文件放入android/app目录下

详解如何在Flutter中集成华为认证服务

e) 配置maven仓地址和agc插件地址。

a. 打开flutter项目android文件夹下的build.gradle文件。

b. 在allprojects ->repositories里面配置maven仓地址。

c. 在buildscript->repositories中配置maven仓地址。

d. 在buildscript->dependencies中配置appgallery connect插件地址。

详解如何在Flutter中集成华为认证服务

添加编译依赖和agc插件地址。
a. 打开flutter项目android/app文件夹下的build.gradle文件。
b. 在文件中添加如下配置。

详解如何在Flutter中集成华为认证服务

集成sdk

在flutter项目的pubspec.yaml文件中添加依赖:

dependencies:
  flutter:
  sdk: flutter
# add the following line:
  agconnect_auth: ^1.1.0

然后点击pub get进行同步

详解如何在Flutter中集成华为认证服务

接入功能

匿名帐号登录

匿名帐号只需要调用signinanonymously接口进行登录

_signin() async {
 agcauth.instance.signinanonymously().then((value) {
  setstate(() {
   _log =
     'signinanonymously = ${value.user.uid} , ${value.user.providerid}';
  });
 });
}

通过value,我们可以获取到用户信息,例如这里我们获取到了user的id。

手机号&邮箱认证

手机号邮箱账号认证首先需要发送验证码,

手机号请求验证码,即调用requestverifycode方法,传入手机号、国家码、设置项作为参数:

_requestphoneverifycode(verifycodeaction action) {
 string countrycode = _countrycodecontroller.text;
 string phonenumber = _phonenumbercontroller.text;
 verifycodesettings settings = verifycodesettings(action, sendinterval: 30);
 phoneauthprovider.requestverifycode(countrycode, phonenumber, settings).then((value) => print(value.validityperiod));
}

邮箱请求验证码,即调用requestverifycode方法,传入邮箱、设置项作为参数:

_requestemailverifycode(verifycodeaction action) {
 string email = _emailcontroller.text;
 verifycodesettings settings = verifycodesettings(action, sendinterval: 30);
 emailauthprovider.requestverifycode(email, settings)
   .then((value) => print(value.validityperiod));
}

而后是创建用户的操作:

创建手机账号用户,需要调用createphoneuser方法,传入封装好的phoneuser对象

_createphoneuser() async {
  bool result = await _showphonedialog(verifycodeaction.registerlogin);
  if (result == null) {
   print("cancel");
   return;
  }
  string countrycode = _countrycodecontroller.text;
  string phonenumber = _phonenumbercontroller.text;
  string verifycode = _verifycodecontroller.text;
  string password = _passwordcontroller.text;
  agcauth.instance.createphoneuser(phoneuser(countrycode, phonenumber, verifycode, password: password)) .then((value) {
   setstate(() {
    _log = 'createphoneuser = ${value.user.uid} , ${value.user.providerid}';
   });
  }).catcherror((error)=>print(error));
 }

创建邮箱账号用户,需要调用createemailuser方法,传入封装好的emailuser对象。

_createemailuser() async {
  bool result = await _showemaildialog(verifycodeaction.registerlogin);
  if (result == null) {
   print("cancel");
   return;
  }
  string email = _emailcontroller.text;
  string verifycode = _verifycodecontroller.text;
  string password = _passwordcontroller.text;
  agcauth.instance
    .createemailuser(emailuser(email, verifycode, password: password))
    .then((value) {
   setstate(() {
    _log = 'createemailuser = ${value.user.uid} , ${value.user.providerid}';
   });
  }).catcherror((error) => print(error));
 }

最后是登录功能,有两种登录模式,一种是密码登录方式:

手机账号,调用signin方法,传入使用手机号等生成的认证凭据。

_signinwithpassword() async {
  bool result = await _showphonedialog(verifycodeaction.registerlogin);
  if (result == null) {
   print("cancel");
   return;
  }
  string countrycode = _countrycodecontroller.text;
  string phonenumber = _phonenumbercontroller.text;
  string password = _passwordcontroller.text;
  agcauthcredential credential = phoneauthprovider.credentialwithpassword(countrycode, phonenumber, password);
  agcauth.instance.signin(credential).then((value) {
   setstate(() {
    _log = 'signinwithpassword = ${value.user.uid} , ${value.user.providerid}';
   });
  });
 }

邮箱账号:调用signin方法,传入通过邮箱和密码生成的认证凭据。

_signinwithpassword() async {
  bool result = await _showemaildialog(verifycodeaction.registerlogin);
  if (result == null) {
   print("cancel");
   return;
  }
  string email = _emailcontroller.text;
  string password = _passwordcontroller.text;
  agcauthcredential credential =
    emailauthprovider.credentialwithpassword(email, password);
  agcauth.instance.signin(credential).then((value) {
   setstate(() {
    _log =
      'signinwithpassword = ${value.user.uid} , ${value.user.providerid}';
   });
  });
 }

另一种是验证码登录方式:

手机账号:调用signin方法,传入通过手机、验证码和密码生成的认证凭据。

_signinwithverifycode() async {
  bool result = await _showphonedialog(verifycodeaction.registerlogin);
  if (result == null) {
   print("cancel");
   return;
  }
  string countrycode = _countrycodecontroller.text;
  string phonenumber = _phonenumbercontroller.text;
  string verifycode = _verifycodecontroller.text;
  string password = _passwordcontroller.text;
  agcauthcredential credential = phoneauthprovider.credentialwithverifycode(countrycode, phonenumber, verifycode, password: password);
  agcauth.instance.signin(credential).then((value) {
   setstate(() {
    _log = 'signinwithverifycode = ${value.user.uid} , ${value.user.providerid}';
   });
  });
 }

邮箱账号:调用signin方法,传入通过邮箱、验证码和密码生成的认证凭据。

_signinwithverifycode() async {
  bool result = await _showemaildialog(verifycodeaction.registerlogin);
  if (result == null) {
   print("cancel");
   return;
  }
  string email = _emailcontroller.text;
  string verifycode = _verifycodecontroller.text;
  string password = _passwordcontroller.text;
  agcauthcredential credential = emailauthprovider.credentialwithverifycode(
    email, verifycode,
    password: password);
  agcauth.instance.signin(credential).then((value) {
   setstate(() {
    _log =
      'signinwithverifycode = ${value.user.uid} , ${value.user.providerid}';
   });
  });
 }

自有账号

自有账号创建jwt获取token等步骤为server端步骤,端侧只需要取到token进行登录即可。

_signin() async {
  bool result = await _showselfbuilddialog(verifycodeaction.registerlogin);
  if (result == null) {
   print("cancel");
   return;
  }
  string token = _selfbuildcontroller.text;
  agcauthcredential credential = selfbuildauthprovider.credentialwithtoken(token);
  agcauth.instance.signin(credential).then((value) {
   setstate(() {
    _log = 'signin = ${value.user.uid} , ${value.user.providerid}';
   });
  });
 }

打包

与android相同,只需要在android studio中点击运行即可

欲了解更多详情请参见:

认证服务开发指南:

https://developer.huawei.com/consumer/cn/doc/development/appgallery-connect-guides/agc-auth-introduction-0000001053732605

认证服务codelab(android):

https://developer.huawei.com/consumer/cn/codelab/authenticationservice/index.html#0

原文链接:

原作者:mayism

到此这篇关于详解如何在flutter中集成华为认证服务的文章就介绍到这了,更多相关flutter集成华为认证服务内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!