插件版授权的时候使用文档中的代码 提示MiniprogramThirdpartyPlugin.openAuthorizeAccount is not a function,我打印了对象 里面确实没有openAuthorizeAccount这个方法,但是文档中显示让调用这个方法,请问这里该怎么处理?
以下是我的代码
const MiniprogramThirdpartyPlugin = requirePlugin('miniprogram-thirdparty-plugin')
// 初始化
MiniprogramThirdpartyPlugin.init(wx)
console.log(MiniprogramThirdpartyPlugin)
// 请求用户授权
MiniprogramThirdpartyPlugin.openAuthorizeAccount({
component_appid:'',
pre_auth_code:'',//步骤一获取的预授权码
auth_type:3
})
有解决嘛,我也遇到了