- openAuthornt is not function?
const MiniprogramThirdpartyPlugin = requirePlugin('miniprogram-thirdparty-plugin') // 初始化 console.log(MiniprogramThirdpartyPlugin,) MiniprogramThirdpartyPlugin.init(wx) // 请求用户授权 MiniprogramThirdpartyPlugin.openAuthorizeAccount({ platformAppID: 'wx84e6f7cdc3bbeca9', preAuthCode: res.resultData, //获取的预授权码 authType: 3, }) [图片] [图片] [图片] 知道原因了, "plugins" : { "miniprogram-thirdparty-plugin" : { "version" : "0.3.13", // 这里的版本号要换成最新的 "provider" : "wxb8b928431b8c56d8" } } https://mp.weixin.qq.com/wxopen/pluginbasicprofile?action=intro&appid=wxb8b928431b8c56d8&token=&lang=zh_CN (0.3.5及以下会报错,0.3.6到0.3.9是不报错也不执行,0.3.10/0.3.12/0.3.13是可以的) [图片]
2023-03-13 - 通过授权链接拼接的方式报错参数错误?
通过授权链接拼接的方式报错参数错误? [图片]
2023-03-13 - openAuthorizeAccount is not a function
MiniprogramThirdpartyPlugin.openAuthorizeAccount [图片]
2023-03-10 - 第三方组件 openAuthorizeAccoun 报错?
[图片] 引用这个,报错,是没有这个方法了嘛
2023-03-09 - 微信公众号跳微信小程序不能跳转到详情页?
需求:微信公众号的消息通知点击后,跳到小程序首页,再根据通知带过来的订单id,跳转到详情页。 问题:可以跳转到首页,但是不能根据通知带过来的订单id,跳转到详情页。 线下调试:小程序别个页面带订单id,进入首页后,可直接跳转详情页。或者在首页将订单id值固定,刷新后,也可直接跳转至详情页
2022-08-04