企业微信小程序 wx.qy.openUserProfile 报错怎么处理?
第一次接触企业微信小程序,在测试开发中遇到这样的问题。 openUserProfile(e){
let that = this;
wx.qy.openUserProfile({
type:1,
userid:'xxxxx',
success: function (res) {
that.setData({ back: 'success', res: JSON.stringify(res)})
},
fail: function (res) {
that.setData({ back: 'error', res: JSON.stringify(res) })
}
})
}
返回结果是这样的 : qy.openUserProfile:fail suite auth not exist,may be no agent is authorized。 调用前提 wx.qy.login都能成功,请问一下应该在哪个位置怎么设置一下?