# bindThirdParty ^7.8
绑定第三方账号
# 请求参数
Prop | Type | Required | Default | Comment |
---|---|---|---|---|
type | String | Y | N/A | 第三方 App 简称:'wx','qq' |
# 接口调用示例
const params = {
type: "wx",
};
this.$bridge
.bindThirdParty(params)
.then((res) => {
this.$alert(res);
})
.catch((err) => {
this.$toast(err);
});
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
# 返回参数
- 成功时返回
Prop | Type | Comment |
---|---|---|
errorCode | Number | 错误码 其中 2000 表示第三方 app 未安装 |
errorMsg | String | 错误消息 |
# 返回示例
// 成功返回{}, 由于第三方App成功回调无返回值
{}
// 失败返回
{
errorCode: "40002",
errorMsg: "未能完成该操作。移动平台Token校验不通过[user token not exit]" // 美居用户未登录
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8