最新提问
  • 全部
  • 文章
  • 问答

  • 微信公众号已授权第三方,管理员微信已注销,无法扫码进入后台操作怎样解绑第三方并注销公众号?

    公众号账号登录扫码都无法进入后台,微信号号显示无公众号 [图片] [图片]

  • 使用createInnerAudioContext创建的音频有时无法播放或播放没声音,是什么原因?

    音频播放器代码实现如下。 ios机型比较频发,但无固定的复现场景。目前已知的 iPhone13、iPhone15机型 有时手机自动息屏后重新解锁可能会引发这个问题,但很偶发。 export default Behavior({ data: { playing: false, volume: 1, }, lifetimes: { attached() { this._bindAudioInterruptionEvents(); }, detached() { this._unbindAudioInterruptionEvents(); this.mixinDestroyAudio(); }, }, pageLifetimes: { hide() { this.mixinDestroyAudio(); }, }, methods: { _audioInterruptionBeginHandler() { console.log('受到系统占用而被中断开始'); // this.log() this.stop(); }, _audioInterruptionEndHandler() { console.log('受到系统占用而被中断结束'); // this.log() }, _bindAudioInterruptionEvents() { if (this._audioInterruptionBeginHandlerBound || this._audioInterruptionEndHandlerBound) { this._unbindAudioInterruptionEvents(); } this._audioInterruptionBeginHandlerBound = this._audioInterruptionBeginHandler.bind(this); this._audioInterruptionEndHandlerBound = this._audioInterruptionEndHandler.bind(this); wx.onAudioInterruptionBegin(this._audioInterruptionBeginHandlerBound); wx.onAudioInterruptionEnd(this._audioInterruptionEndHandlerBound); }, _unbindAudioInterruptionEvents() { if (this._audioInterruptionBeginHandlerBound) { try { wx.offAudioInterruptionBegin(this._audioInterruptionBeginHandlerBound); } catch (error) { console.warn('解绑音频中断开始事件时出错:', error); } this._audioInterruptionBeginHandlerBound = null; } if (this._audioInterruptionEndHandlerBound) { try { wx.offAudioInterruptionEnd(this._audioInterruptionEndHandlerBound); } catch (error) { console.warn('解绑音频中断结束事件时出错:', error); } this._audioInterruptionEndHandlerBound = null; } }, _createAudioPlayer(audioSrc) { return new Promise((resolve, reject) => { try { const innerAudioContext = wx.createInnerAudioContext({ useWebAudioImplement: true, }); innerAudioContext.src = audioSrc; resolve(innerAudioContext); } catch (error) { reject(error); } }); }, async _initAudioPlayer(audioSrc) { if (this._currentSrc !== audioSrc) { this._cleanupAudioPlayer(); this._currentSrc = audioSrc; } if (this._innerAudioContext) { return this._innerAudioContext; } if (this._creatingPromise) { return this._creatingPromise; } try { const timestampedSrc = audioSrc + '?v=' + Date.now(); this._creatingPromise = this._createAudioPlayer(timestampedSrc); this._innerAudioContext = await this._creatingPromise; this._innerAudioContext.volume = this.data.volume; this._innerAudioContext.onPlay(() => { this.setData({ playing: true }); // this.log(); this.triggerEvent('play'); }); this._innerAudioContext.onPause(() => { this.setData({ playing: false }); // this.log(); this.triggerEvent('pause'); }); this._innerAudioContext.onStop(() => { this.setData({ playing: false }); // this.log(); this.triggerEvent('stop'); this.mixinDestroyAudio(); }); this._innerAudioContext.onEnded(() => { this.setData({ playing: false }); // this.log(); this.triggerEvent('playEnded'); this.mixinDestroyAudio(); }); this._innerAudioContext.onError((error) => { this.setData({ playing: false }); wx.showToast({ title: '网络异常,请稍后重试', icon: 'none', }); this.mixinDestroyAudio(); this.triggerEvent('error', error); }); return this._innerAudioContext; } catch (error) { this.mixinDestroyAudio(); throw error; } finally { this._creatingPromise = null; } }, _cleanupAudioPlayer() { if (this._innerAudioContext) { try { this._innerAudioContext.destroy(); } catch (error) { console.warn('销毁音频播放器时出错:', error); // this.log(); } this._innerAudioContext = null; } this._currentSrc = null; this._creatingPromise = null; }, async playAudio(src) { try { this._src = src; if (!src) { throw new Error('音频URL不能为空'); } this.triggerEvent('beforePlay'); const audioPlayer = await this._initAudioPlayer(src); audioPlayer.play(); } catch (error) { console.error('播放音频失败:', error); wx.showToast({ title: '音频播放失败,请稍后重试', icon: 'none', }); this.mixinDestroyAudio(); this.triggerEvent('error', error); } }, pause() { if (this._innerAudioContext && this.data.playing) { this._innerAudioContext.pause(); } }, resume() { if (this._innerAudioContext && !this.data.playing) { this._innerAudioContext.play(); } }, stop() { if (this._innerAudioContext) { this._innerAudioContext.stop(); } }, mixinDestroyAudio() { this._cleanupAudioPlayer(); this.setData({ playing: false }); }, setVolume(volume) { this.setData({ volume }); if (this._innerAudioContext) { this._innerAudioContext.volume = volume; } }, log() { // 日志上报 }, }, });

  • 域名被限制访问,网站已备案,请求管理解除拦截?

    域名被限制访问, 您好,本网站已备案,并已悬挂备案号,备案号为:沪ICP备2024083675号-7 , 请求解除拦截,感谢。目前已经影响生产系统使用,请及时处理。通过页面上的申请恢复通道多次申诉,一直不能通过。 @微信朋友圈&外链咨询 [图片] [图片]

  • 微信内访问网站出现“如需浏览,请长按网址复制后使用浏览器访问”的拦截提示?

    微信内访问上海都青电子商务有限公司备案的域名 zqbph.com 和 svggd.com出现“如需浏览,请长按网址复制后使用浏览器访问”的拦截提示,腾讯安全网址安全中心检测网页没有不安全的内容网页已二次整改完成,这不乱搞吗?

  • 身份证绑定的工作号已被注销,如何解绑身份证号?

    多年前因工作需要用个人身份证绑定了公众号发布公司相关的信息,本人已经离职多年,注册了新的个人的微信公众号,发布内容时才发现身份证已被之前的公众号ID“江苏众信海外发展部”注册,尝试过解绑,但由于原账号已被注销,搜索不到,也无法解绑。麻烦协助解绑,谢谢!

  • 菜单跳转链接URL可能存在安全风险?

    http://www.51dai.top/loanroute/report/query http://www.51dai.top/loanroute/loan/list 这两个域名。配置微信H5

  • 扫普通二维码链接打开小程序被拦截,能给处理一下吗?

    之前给解封了没有2天又有问题了,这个是什么问题呢 链接地址:https://xcx.jinanzhengyu.top/device/202601061601535314 链接地址:https://xcx.jinanzhengyu.top/device/202601051550068048 需要将校验的文件放置于public目录下,文件移交放置到目录下并测试可以访问。小程序正常上线,是‘正羽共享羽毛球拍柜’,属于正常的租赁业务,无违规记录。域名已经在火山云备案通过。 [图片]

  • 微信网址无法访问申诉,域名已完成备案,麻烦帮忙审核?

    你好,该域名是我们公司注册并且已备案完成的网址,用于公司产品的介绍,但访问的时候提醒:(如需浏览,请长按网址复制后使用浏览器访问),这样会给用户在该平台无法正常的使用我们的网址,带来极大的不方便,麻烦帮忙审核处理一下,谢谢。 [图片] [图片] [图片] 域名链接:gzxyghi.cn

  • 无账号?

    该授权仅支持公众号或服务号,当前微信号 尚未绑定为任何公众号或服务号的管理员, 请绑定后重试。 [图片]

  • “接用户投诉并经审核核实,小程序存在恶意注册,被永久封号”,我们小程序刚注册没使用就封了,什么问题?

    申诉请求:请求平台立即解除小程序的封禁,恢复正常使用权限

  • 小程序变更主体后内置同主体公众号图文中,图文被严重限流,怎么办?

    小程序 gh_20159480021f 主体已经做变更,小程序备案也已经审核通过。 但是,将小程序编辑到变更后同一主体的公众号 gh_6f3445ca7e15 图文后,发布的图文内容被严重限流 该如何处理呢?请管理帮忙看看。

  • 请问微信小店保证金开具收据的话是什么样子?有图片或者模板吗?

    请问微信小店保证金开具收据的话是什么样子?有图片或者模板吗?

  • 扫普通链接二维码打开小程序,提示非微信官方网页,如何完全解决这个问题

    隔三岔五就被拦截,排查过没有违法相关的《微信外部链接内容管理规范》的内容,请解除防控 https://shop.minyulife.com/mp/minapp?cal_code=0276495229019800&mer_id=324&is_jump=1&source=0&hxm=10276495229019800 [图片]

  • 微信提示风险?邮箱kf@tencent.com不存在?

    微信提示风险?申请恢复。邮箱kf@tencent.com不存在?人呢啊

  • 小程序跳转能力,可能影响线上业务?

    该操作将影响小程序跳转能力,可能影响线上业务,请审慎确认, 这种会不会影响到小程序后续运营,卡顿还是其他方面的。

  • 赞赏金额无法到账,怎么办?

    我的赞赏小程序里显示有金额800多元,但在公众号助手APP中却显示为零,无法提取。半年多没有解决。

  • rich-text渲染问题?

    微信小程序中,一段富文本标签里面有视频video标签,开发中发现没有渲染出来,想知道rich-text是否支持渲染video?[图片]

  • 微信公众号H5进入网站提示 “如需浏览,请长按网址复制后使用浏览器访问”,请求解决?

    你好,此站点是上海雅平赫科技有限公司备案域名,是我们司的官方网站,做产品展示使用,内容不存在任何恶意欺诈内容,通过腾讯网址安全中心查询未发现安全拦截(如图),目前通过微信访问显示“如需浏览,请长按网址复制后使用浏览器访问” 已严重影响我司正常运营,请给与及时解除拦截,感谢请尽快处理!

  • 微信小店链接微信小程序商城,无法显示完整订单信息?

    我将小程序通过微信开放平台连接了小程序商城,但是用户在微信小店下单后,在小程序商城不显示完整订单信息(如手机号,地址等),与我小程序对接的供应链方也无法获取完整地址,联系提供服务的快递公司,那边也说看不到完整地址,那就无法正常发货了

  • 微信通过链接进入网站提示 “无法确认该网页的安全性,请谨慎访问”,烦请官方查看应该如何处理?

    备案号:沪ICP备2024096051号-7 经建站技术人员排查,不存在安全问题。但是在微信里打开网站链接,却提示'无法确认该网页的安全性,请谨慎访问’,现申请解除封禁。

运营专区
运营公告、规则解析与使用教程。
更多