小程序
小游戏
企业微信
微信支付
扫描小程序码分享
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
服务商创建试用小程序报错
如图:请求方式为
const MiniprogramThirdpartyPlugin = requirePlugin('miniprogram-thirdparty-plugin')
// 初始化
MiniprogramThirdpartyPlugin.init(wx)
// 请求用户授权
MiniprogramThirdpartyPlugin.authorize({
token: '', // 传入后台返回的create_token,通过【fastregisterbetaweapp】接口获得的authorize_url,该url中的create_token
success(res) {
// 授权成功
uni.showToast({
title: '授权成功',
})
},
fail(err) {
console.error(err)
// 授权失败或其他异常
title: '授权失败',
}
// 请求打开试用小程序
MiniprogramThirdpartyPlugin.openTrial({
appid: '', // 试用小程序的appid
platformAppID: '', // 平台的appid
fail() {
// 其他异常
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
服务商创建试用小程序报错
如图:请求方式为
const MiniprogramThirdpartyPlugin = requirePlugin('miniprogram-thirdparty-plugin')
// 初始化
MiniprogramThirdpartyPlugin.init(wx)
// 请求用户授权
MiniprogramThirdpartyPlugin.authorize({
token: '', // 传入后台返回的create_token,通过【fastregisterbetaweapp】接口获得的authorize_url,该url中的create_token
success(res) {
// 授权成功
uni.showToast({
title: '授权成功',
})
},
fail(err) {
console.error(err)
// 授权失败或其他异常
uni.showToast({
title: '授权失败',
})
}
})
// 请求打开试用小程序
MiniprogramThirdpartyPlugin.openTrial({
appid: '', // 试用小程序的appid
platformAppID: '', // 平台的appid
fail() {
// 其他异常
}
})