收藏
回答

游戏对局回放分享失败

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小游戏 Bug 游戏对局回放分享 微信安卓客户端 2.10.3 2.10.4

https://developers.weixin.qq.com/minigame/dev/guide/open-ability/game-recorder.html

点击分享按钮,返回operateWXData: fail

var gameRecorder = wx.getGameRecorder();

var startCb = function () {

console.log('start')

setTimeout(function () {

gameRecorder.stop().then(function (res) {

console.log(222, res)

const btn = wx.createGameRecorderShareButton({

// 样式参数

style: {

left: 10,

top: 150,

height: 50,

color: '#ffffff',

textAlign: 'center',

fontSize: 16,

borderRadius: 4,

iconMarginRight: 16,

paddingLeft: 1,

paddingRight: 30,

},

// 按钮的背景图片

image: 'button.jpg',

text: '自定义文案',

icon: 'icon.jpg',

// 分享参数

share: {

query: 'a=1&b=2',

// 背景音乐的路径

bgm: 'walkin.mp3',

timeRange: [[0, 1000], [2000, 3000]],

title: {

template: 'default.score',

data: {

score: 6500

}

},

button: {

template: 'default.enter',

}

}

})

btn.show()

btn.onTap(function (res) {

console.log(111, res)

})

}).catch(function (err) {

console.log(err)

})

}, 10000)

}

gameRecorder.on('start', startCb)

gameRecorder.on('stop', function(res){

console.log(333,res)

})

gameRecorder.start({ duration: 10, bitrate: 800 })



回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容
问题标签