前端之家收集整理的这篇文章主要介绍了
Cocos调用小程序分享接口,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
- 准备:
- 1.开发者权限 + 小游戏类目
- 2.分享图放在resources文件夹下: resources/texture/share.png
wx.showShareMenu({withShareTicket:true})
cc.loader.loadRes("texture/share",function(err,data){
wx.onShareAppMessage(function(res){
return {
title: "经典打飞机游戏始终好玩如初,来吧!一起回味经典的乐趣。",imageUrl: data.url,success(res){
console.log(res)
},fail(res){
console.log(res)
}
}
})
});
//3.主动拉起分享接口
cc.loader.loadRes("texture/share",function(err,data){
wx.shareAppMessage({
title: "经典打飞机游戏始终好玩如初,来吧!一起回味经典的乐趣。",imageUrl: data.url,success(res){
console.log(res)
},fail(res){
console.log(res)
}
})
})
原文链接:https://www.f2er.com/cocos2dx/338183.html