- 所有代码都能提到体验版本,就是createInterstitialAd 这个api的代码不能?
wx.createInterstitialAd({ adUnitId: "adunit-1111111111111" }) 我把这个API的id改成了一个乱七八糟的,在本地报错,推到体验版上,还是能正常拉到广告
10-29 - 我把本地createInterstitialAd代码删除,为什么体验版本还能出现广告?
[图片]
10-29 - createInterstitialAd?api有问题
按照文档添加广告代码,后续把该代码删掉,广告依然还在
10-29 - js-sdk分享时缩略图不显示
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html const _that = this const timestamp = new Date().getTime() const source = "m_weixin" const noncestr = source + timestamp wxAutograph({ noncestr, timestamp, url: window.location.href, type: 2 }).then(res_data => { wx.config({ debug: false, // 开启调试模式,调用的所有 api 的返回值会在客户端 alert 出来,若要查看传入的参数,可以在 pc 端打开,参数信息会通过 log 打出,仅在 pc 端时才会打印 appId: WXAPPID, // 必填,公众号的唯一标识 timestamp, // 必填,生成签名的时间戳 nonceStr: noncestr, // 必填,生成签名的随机串 signature: res_data.data, // 必填,签名 jsApiList: ["updateAppMessageShareData", "updateTimelineShareData"] // 必填,需要使用的 JS 接口列表 }) // 自定义“分享给朋友”及“分享到QQ”按钮的分享内容 wx.ready(function() { // 需在用户可能点击分享按钮前就先调用 wx.updateAppMessageShareData({ title: _that.pageData.title, // 分享标题 desc: "资讯", // 分享描述 link: `${window.location.host}?source=${source}&t=${timestamp}`, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: _that.pageData.cover.includes(".gif") ? _that.pageData.cover : _that.pageData.cover + PUBLIC_CONFIG.qiniu.comp_cover, // 分享图标 success() { // 设置成功 console.log("设置分享好友成功") } }) wx.updateTimelineShareData({ title: _that.pageData.title, // 分享标题 link: `${window.location.host}&source=${source}&t=${timestamp}`, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: _that.pageData.cover.includes(".gif") ? _that.pageData.cover : _that.pageData.cover + PUBLIC_CONFIG.qiniu.comp_cover, // 分享图标 success() { // 设置成功 console.log("设置分享朋友圈成功") } }) // 自定义“分享到朋友圈”及“分享到QQ空间”按钮的分享内容(1.4.0) }) }) 缩略图为什么ios分享朋友圈有缩略图,分享朋友没有缩略图,安卓是都没有
08-23 - wx-open-launch-app只能卡片连接使用?
wx-open-launch-app这个开放标签,在微信里面只能使用微信内置的卡片连接打开使用吗?正常的网页地址打开唤起app失败,并报错"fail launch"
2022-06-29 - wx-open-launch-app 只能在当前url下生效吗?
wx-open-launch-app开放标签在nuxt中使用,当页面路径发生变化时,跳转app会报错fail_check
2022-06-28