其他
抖音、头条一个都不放过,字节小游戏上线攻略!
今日头条
抖音
头条lite版
皮皮虾
西瓜视频
新游戏上线,字节小游戏会选择在 ”今日头条“ 或 ”抖音“ 其中一个 App 上做导量测试,时间通常会选择在周五下午或晚上,而且如果在第一天出现突然的新增用户,后面将会有至少3天的持续新增。
https://microapp.bytedance.com/dev/cn/mini-game/introduction/about-mini-game/general-introduction
https://microapp.bytedance.com/dev/cn/mini-game/develop/developer-instrument/developer-instrument-update-and-download
//API使用wx或tt都是没问题的
let gameRecorder = wx.getGameRecorderManager();
//开始录屏,参数 duration 是录屏时长,最大值是 300 秒
gameRecorder.start({ duration: 30 });
//停止录屏
gameRecorder.stop();
//录屏开始
gameRecorder.onStart(() => {
console.log('录屏开始');
});
//录屏结束,获取 videoPath
gameRecorder.onStop((res) => {
console.log('录屏结束', res.videoPath);
});
//获取分享导语
let desc = this.getShaderDesc();
wx.shareAppMessage({
channel: 'video', //指定为视频分享
title: '奎特尔数字大冒险',
desc,
extra: {
videoPath: WXHelper.videoPath // 设置视频路径
},
success: () => {
//分享回调
console.log('录屏分享成功');
//分享奖励,仅一次
if (!this._isVideoShared) {
this._isVideoShared = true;
this.getGoldSuccess();
}
},
fail: () => {
console.log('录屏分享失败');
}
});