鸿蒙 HarmonyOS NEXT端云一体化开发-认证服务篇

一、开通认证服务

地址:AppGallery Connect (huawei.com)

步骤:
1 进入到项目设置页面中,并点击左侧菜单中的认证服务
2 选择需要开通的服务并开通

image.png

二、端侧项目环境配置

添加依赖
entry目录下的oh-package.json5
// 添加:主要前2个依赖
"dependencies": {"@hw-agconnect/cloud": "^1.0.0","@hw-agconnect/hmcore": "^1.0.0","@hw-agconnect/auth-component": "^1.0.0", // 可选"long": "5.2.1"}

开通网络权限
// 文件名:module.json5
// 路径:src/main/module.json5"requestPermissions": [{"name": "ohos.permission.INTERNET" // 网络权限},]

更新agconnect-services.json文件
// AGC网站提示:下载最新的配置文件(如果您修改了项目、应用信息或者更改了某个开发服务设置,可能需要更新该文件)
为了确保项目不会出错,建立更新下该配置文件

三 认证组件界面示例

  1. 新建Login.ets页面,并设置成为应用首页

image.png

  1. Login.ets调用认证组件
import { AuthMode, Login } from '@hw-agconnect/auth-component';
import router from '@ohos.router';@Entry
@Component
struct MyLogin {@State message: string = 'Hello World';build() {Column(){Text("test")// auth-component 中的组件LoginLogin({modes:[AuthMode.PHONE_VERIFY_CODE] // 手机验证码登录,onSuccess:()=>{//登录成功后的回调router.pushUrl({url:'pages/Index'})}}){Button("登录").height(60).width("100%")}}.width("100%").height("100%")}
}

image.png
image.png

四、自定义登录组件

// 参考链接:https://developer.huawei.com/consumer/cn/doc/AppGallery-connect-Guides/agc-auth-harmonyos-arkts-login-phone-0000001631566338import cloud from '@hw-agconnect/cloud';
import { Auth, VerifyCodeAction } from '@hw-agconnect/cloud';@Entry
@Component
struct PageTest {@State verificationBtnStr:string= "验证码"phone:string = ""@State verifcationBtnStatus:boolean = true@State timer :number = 0@State countDown:number = 60// 云端获取getCloudQrCode(){cloud.auth().requestVerifyCode({action: VerifyCodeAction.REGISTER_LOGIN,lang: 'zh_CN',sendInterval: 60,verifyCodeType: {phoneNumber: this.phone,countryCode: '86',kind: "phone"}}).then(verifyCodeResult => {//验证码申请成功console.log(JSON.stringify(verifyCodeResult))AlertDialog.show({title: "提示",message: "获取验证码成功",})}).catch((error: Promise<Result>) => {AlertDialog.show({title: "提示",message: "获取验证码失败",})//验证码申请失败});}// 初始化参数:initData(){clearInterval(this.timer)this.verifcationBtnStatus = truethis.verificationBtnStr  = "验证码"this.countDown  = 60}// 发送验证码getCode(){if(this.phone==''){AlertDialog.show({title: "提示",message: "请输入手机号码",})return;}this.verifcationBtnStatus = falsethis.getCloudQrCode()this.timer  = setInterval(()=>{this.verificationBtnStr = `${this.countDown}s`if(this.countDown===0){this.initData()return;}this.countDown --},1000)}build() {Column({space:20}){TextInput({placeholder:'请输入手机号:'}).width("100%").height(60).margin({top:20}).onChange((value)=>{this.phone = value})Row(){TextInput({placeholder:"请输入验证码"}).layoutWeight(1).margin({right:20})Button(this.verificationBtnStr).width(120).onClick(()=>{this.getCode()}).enabled(this.verifcationBtnStatus)}.width("100%").height(60)Button("登录").width("100%").height(40).padding({left:50,right:50}).backgroundColor("#ff08be4b")}.width("100%").height("100%").padding({left:10,right:10})}
}
  1. 效果:

image.png

五、邮箱登录验证

import cloud from '@hw-agconnect/cloud';
import { Auth, VerifyCodeAction } from '@hw-agconnect/cloud';
import router from '@ohos.router';@Entry
@Component
struct PageTest {@State verificationBtnStr:string= "验证码"@State phone:string = ""@State verifcationBtnStatus:boolean = true@State timer :number = 0@State countDown:number = 60@State data:string = ""@State verifCode:string = ""// 注销loginOut(){cloud.auth().signOut().then(() => {//登出成功AlertDialog.show({title: "提示",message: "注销用户成功",})}).catch(() => {//登出失败});}//登录login(){// 注册this.data = this.verifCodecloud.auth().signIn({credentialInfo: {kind: 'email',email: this.phone,verifyCode: this.verifCode}}).then(user => {//登录成功router.replaceUrl({url:'pages/Index'})}).catch((error:Promise<Result>) => {//登录失败this.data= JSON.stringify(error)AlertDialog.show({title: "提示",message: JSON.stringify(error),})});}// 云端获取getCloudQrCode(){cloud.auth().requestVerifyCode({action: VerifyCodeAction.REGISTER_LOGIN,lang: 'zh_CN',sendInterval: 60,verifyCodeType: {email: this.phone,kind: "email",}}).then(verifyCodeResult => {//验证码申请成功console.log(JSON.stringify(verifyCodeResult))this.data = JSON.stringify(verifyCodeResult)AlertDialog.show({title: "提示",message: "获取验证码成功",})}).catch((error: Promise<Result>) => {AlertDialog.show({title: "提示",message: "获取验证码失败",})//验证码申请失败});}// 初始化参数:initData(){clearInterval(this.timer)this.verifcationBtnStatus = truethis.verificationBtnStr  = "验证码"this.countDown  = 60}// 发送验证码getCode(){if(this.phone==''){AlertDialog.show({title: "提示",message: "请输入用户邮箱",})return;}this.verifcationBtnStatus = falsethis.getCloudQrCode()this.timer  = setInterval(()=>{this.verificationBtnStr = `${this.countDown}s`if(this.countDown===0){this.initData()return;}this.countDown --},1000)}build() {Column({space:20}){TextInput({placeholder:'请输入手机号:'}).width("100%").height(60).margin({top:20}).onChange((value)=>{this.phone = value})Row(){TextInput({placeholder:"请输入验证码"}).layoutWeight(1).margin({right:20}).onChange((value)=>{this.verifCode =value})Button(this.verificationBtnStr).width(120).onClick(()=>{this.getCode()}).enabled(this.verifcationBtnStatus)}.width("100%").height(60)Button("登录").onClick( ()=>{this.data = "1aaaaaa"this.login()}).width("100%").height(40).padding({left:50,right:50}).backgroundColor("#ff08be4b")Button("注销").onClick( ()=>{this.data = "1aaaaaa"this.loginOut()}).width("100%").height(40).padding({left:50,right:50}).backgroundColor("#ff08be4b")Text(this.data).width("100%").height(200).backgroundColor(Color.Pink)}.width("100%").height("100%").padding({left:10,right:10})}
}
  • 获取验证码

image.png
image.png

  • 登录

image.png

// 提示用户已经登录过了,需要登出后才能重新登录
// 重而需要调用注销按钮中的登出方法cloud.auth().signOut()

image.png

  • 点击注销按钮

image.png

  • 点击登录后,跳转到Index页面中

image.png

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/876694.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《python程序语言设计》第6章14题 估算派值 类似莱布尼茨函数。但是我看不明白

这个题提供的公式我没看明白&#xff0c;后来在网上找到了莱布尼茨函数 c 0 for i in range(1, 902, 100):a (-1) ** (i 1)b 2 * i - 1c a / bprint(i, round(4 / c, 3))结果 #按题里的信息&#xff0c;但是结果不对&#xff0c;莱布尼茨函数到底怎么算呀。

PyTorch深度学习快速入门(上)

PyTorch深度学习快速入门&#xff08;上&#xff09; 一、前言&#xff08;一&#xff09;PyTorch环境配置&#xff08;二&#xff09;Python编译器的选择&#xff08;三&#xff09;Python学习中的两大法宝函数 二、如何加载数据&#xff08;一&#xff09;Dataset与Dataloade…

轻松学EntityFramework Core--模型创建

一、使用代码优先&#xff08;Code-First&#xff09;创建模型 Code-First 方法是 EF Core 提供的一种用于定义模型的方式&#xff0c;它允许开发人员通过编写 C# 类来定义数据库模式&#xff0c;再通过迁移命令生成数据库表。下面我们来一起看一下代码优先如何使用。 1.1、创…

lua 游戏架构 之 游戏 AI (六)ai_auto_skill

定义一个为ai_auto_skill的类&#xff0c;继承自ai_base类。ai_auto_skill类的目的是在AI自动战斗模式下&#xff0c;根据配置和条件自动选择并使用技能。 lua 游戏架构 之 游戏 AI &#xff08;一&#xff09;ai_base-CSDN博客文章浏览阅读379次。定义了一套接口和属性&#…

【原创】使用keepalived虚拟IP(VIP)实现MySQL的高可用故障转移

1. 背景 A、B服务器均部署有MySQL数据库&#xff0c;且互为主主。此处为A、B服务器部署MySQL数据库实现高可用的部署&#xff0c;当其中一台MySQL宕机后&#xff0c;VIP可自动切换至另一台MySQL提供服务&#xff0c;实现故障的自动迁移&#xff0c;实现高可用的目的。具体流程…

快速安装torch-gpu和Tensorflow-gpu(自用,Ubuntu)

要更详细的教程可以参考Tensorflow PyTorch 安装&#xff08;CPU GPU 版本&#xff09;&#xff0c;这里是有基础之后的快速安装。 一、Pytorch 安装 conda create -n torch_env python3.10.13 conda activate torch_env conda install cudatoolkit11.8 -c nvidia pip ins…

mstc远程连接不锁屏

连接不锁屏 方法一 方法二 win10 解决多用户同时远程连接教程&#xff08;超详细图文&#xff09;_win10多用户登录-CSDN博客 win7软件 logout.bat for /f "skip1 tokens3" %%s in (query user %USERNAME%) do (%windir%\System32\tscon.exe %%s /dest:console) …

Datawhale AI 夏令营——AI+逻辑推理——Task1

# Datawhale AI 夏令营 夏令营手册&#xff1a;从零入门 AI 逻辑推理 比赛&#xff1a;第二届世界科学智能大赛逻辑推理赛道&#xff1a;复杂推理能力评估 代码运行平台&#xff1a;魔搭社区 比赛任务 本次比赛提供基于自然语言的逻辑推理问题&#xff0c;涉及多样的场景&…

React Native 与 Flutter:你的应用该如何选择?

Flutter 和 React Native 都被认为是混合应用程序开发中的热门技术。然而&#xff0c;当谈到为你的项目使用框架时&#xff0c;你必须考虑哪一个是最好的&#xff1a;Flutter 还是 React Native&#xff1f; 本篇文章包含 Flutter 和 React Native 在各个方面的差异。因此&…

正则表达式与文本处理

目录 一、正则表达式 1、正则表达式定义 1.1正则表达式的概念及作用 1.2、正则表达式的工具 1.3、正则表达式的组成 2、基础正则表达式 3、扩展正则表达式 4、元字符操作 4.1、查找特定字符 4.2、利用中括号“[]”来查找集合字符 4.3、查找行首“^”与行尾字符“$”…

Lesson 52 What nationality are they? Where do they come from?

Lesson 52 What nationality are they? Where do they come from? 词汇部分 the U.S. 美国 全称&#xff1a;The United States of America    美利坚合众国 其他称呼&#xff1a;the States      the U.S.A.      Uncle Sam Brazil n. 巴西 Brazilian a. 巴…

LeetCode算法——滑动窗口矩阵篇

1、长度最小的子数组 题目描述&#xff1a; 解法&#xff1a; 设一个 for 循环来改变指向窗口末尾的指针&#xff0c;再不断抛弃当前窗口内的首元素 最终确定满足条件的最小长度 class Solution { public:int minSubArrayLen(int target, vector<int>& nums) {int …

duilib中设置窗口透明度的接口CPaintManagerUI::SetTransparent有问题导致使用duilib窗口实现异形窗口无效的排查

目录 1、duilib框架中设置窗口透明度的代码说明 2、UpdateLayeredWindow调用失败,发现添加的WS_EX_LAYERED风格被删除了 3、窗口有WS_EX_LAYERED风格了,但UpdateLayeredWindow调用依旧失败 4、如何知道SetLayeredWindowAttributes函数调用之后再调用UpdateLayeredWindow…

苹果电脑暂存盘已满怎么清理 Mac系统如何清理磁盘空间 清理MacBook

Mac电脑用户在长时间使用电脑之后&#xff0c;时常会看到“暂存盘已满”的提示&#xff0c;这无疑会给后续的电脑使用带来烦恼&#xff0c;那么苹果电脑暂存盘已满怎么清理呢&#xff0c;下面将给大家带来一些干货帮你更好地解决这个问题。 首先我们要搞明白为什么暂存盘会满&…

c++ 智能指针shared_ptr与make_shared

shared_ptr是C11引入的一种智能指针&#xff0c;‌它允许多个shared_ptr实例共享同一个对象&#xff0c;‌通过引用计数来管理对象的生命周期。‌当最后一个持有对象的shared_ptr被销毁时&#xff0c;‌它会自动删除所指向的对象。‌这种智能指针主要用于解决资源管理问题&…

【运维自动化-配置平台】模型及模型关联最小化实践

蓝鲸智云配置平台&#xff0c;以下简称配置平台 我们知道主机是配置平台最常见的管控资源对象&#xff0c;在业务拓扑里可以通过划分模块来清晰的可视化管理&#xff1b;那其他资源如何通过配置平台来纳管呢&#xff0c;比如网络设备交换机。场景需求&#xff1a;如何把交换机…

【前端 10】初探BOM

初探BOM&#xff1a;浏览器对象模型 在JavaScript的广阔世界中&#xff0c;BOM&#xff08;Browser Object Model&#xff0c;浏览器对象模型&#xff09;扮演着举足轻重的角色。它为我们提供了一套操作浏览器窗口及其组成部分的接口&#xff0c;让我们能够通过编写JavaScript…

QT--线程

一、线程QThread QThread 类提供不依赖平台的管理线程的方法&#xff0c;如果要设计多线程程序&#xff0c;一般是从 QThread继承定义一个线程类&#xff0c;在自定义线程类里进行任务处理。qt拥有一个GUI线程,该线程阻塞式监控窗体,来自任何用户的操作都会被gui捕获到,并处理…

【PyQt5】一文向您详细介绍 setPlaceholderText() 的作用

【PyQt5】一文向您详细介绍 setPlaceholderText() 的作用 下滑即可查看博客内容 &#x1f308; 欢迎莅临我的个人主页 &#x1f448;这里是我静心耕耘深度学习领域、真诚分享知识与智慧的小天地&#xff01;&#x1f387; &#x1f393; 博主简介&#xff1a;985高校的普通…