企业微信在ios机型无法吊起打开个人信息页接口(openUserProfile)
// 获取用户轮廓
getUserProfile() {
let self = this;
wx.invoke("getCurExternalContact", {}, function(res) {
if (res.err_msg == "getCurExternalContact:ok") {
// 个人信息
wx.invoke(
"openUserProfile",
{
type: 2, //1表示该userid是企业成员,2表示该userid是外部联系人
userid: res.userId //可以是企业成员,也可以是外部联系人
},
function(res) {
if (res.err_msg != "openUserProfile:ok") {
// 错误处理
self.$toast(`吊起失败${res.err_msg}`);
}
}
);
} else {
//错误处理
}
});
},
在调用个人信息之前wx.config和wx.agentConfig均配置成功,桌面端和android手机都可以正常吊起个人信息,唯独ios机型不行。 测试过的ios机型包括:10、11、X、XS 使用的版本:https://res.wx.qq.com/open/js/jweixin-1.2.0.js