bindThirdParty 绑定第三方账号
摘要:bindThirdParty ^7.8 绑定第三方账号 #请求参数 Prop Type Default Comment type String N/A wx #接口调用示例 const params = { "type": "wx" } this.$bridge .bindThirdParty(pa
阅读全文
posted @
2024-12-18 09:21
AtlasLapetos
阅读(2)
推荐(0) 编辑
deleteAuthorizeUser 取消授权的接口
摘要:deleteAuthorizeUser ^7.8 取消授权的接口 #请求参数 Prop Type Default Comment thirtyCode String N/A (第三方的code,中台分配的)或者(thirtyCode优先) deviceId String N/A xxx(设备ID)
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(2)
推荐(0) 编辑
checkAuthorize 查询是否授权的接口
摘要:checkAuthorize ^7.8 查询是否授权的接口 #请求参数 Prop Type Default Comment thirtyCode String N/A (第三方的code,中台分配的)或者(thirtyCode优先) deviceId String N/A xxx(设备ID) #接口
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(1)
推荐(0) 编辑
getAuthorizeUserControl 用户授权控制的接口
摘要:getAuthorizeUserControl ^7.8 用户授权控制的接口 #请求参数 Prop Type Default Comment thirtyCode String N/A (第三方的code,中台分配的)或者(thirtyCode优先) deviceId String N/A (设备I
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(3)
推荐(0) 编辑
getAuthToken 获取授权token,24小时有效
摘要:getAuthToken ^7.8 获取授权token,24小时有效 #请求参数 N/A #接口调用示例 this.$bridge .getAuthToken() .then(res => { this.$alert(res) }) .catch(err => { this.$toast(err)
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(2)
推荐(0) 编辑
getUnionId 用户标识unionid主要用于微信、QQ用户系统打通
摘要:getUnionId ^7.8 用户标识unionid主要用于微信、QQ用户系统打通 #请求参数 Prop Type Default Comment type String N/A wx|qq #接口调用示例 const params = { "type": "wx|qq" } this.$brid
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(2)
推荐(0) 编辑
logout 退出登录
摘要:logout ^7.8 退出登录 #请求参数 N/A #接口调用示例 this.$bridge .logout() .then(res => { this.$alert(res) }) .catch(err => { this.$toast(err) }) #接口返回示例 { "isSuccess"
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(2)
推荐(0) 编辑
getLoginInfo 获取身份信息、token等
摘要:getLoginInfo ^7.8 获取身份信息、token等 #请求参数 N/A #接口调用示例 this.$bridge .getLoginInfo() .then(res => { this.$alert(res) }) .catch(err => { this.$toast(err) })
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(3)
推荐(0) 编辑
getTargetHomeInfo 获取指定家庭信息以及设备列表
摘要:getTargetHomeInfo ^5.11.0 获取指定家庭信息以及设备列表 #请求参数 N/A #接口调用示例 this.$bridge .getTargetHomeInfo() .then(res => { this.$toast(res) }) .catch(err => { //集成异常
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(5)
推荐(0) 编辑
getCurrentHomeInfo 获取当前家庭信息
摘要:getCurrentHomeInfo 获取当前家庭信息 #请求参数 N/A #接口调用示例 this.$bridge .getCurrentHomeInfo() .then(res => { this.$toast(res) }) .catch(err => { this.$toast(err) }
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(2)
推荐(0) 编辑
getUserInfo weex 获取当前用户信息
摘要:getUserInfo weex 获取当前用户信息 #请求参数 N/A #接口调用示例 this.$bridge .getUserInfo() .then(res => { this.$toast(res) }) .catch(err => { this.$toast(err) }) #返回参数 P
阅读全文
posted @
2024-12-18 09:20
AtlasLapetos
阅读(7)
推荐(0) 编辑