Cocos调用小程序分享接口

  • 准备: 
    • 1.开发者权限 + 小游戏类目
    • 2.分享图放在resources文件夹下: resources/texture/share.png
//1.显示当前页面右上角的转发按钮
wx.showShareMenu({withShareTicket:true})
//2.监听:分享接口 
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)
        } 
    })
}); 

 

你可能感兴趣的:(Cocos,Creator)