收藏
回答

小程序明文 scheme 外部网页跳转打开小程序 有时候会显示该链接无法访问?

AppID
wx5a95cfae8614033a

小程序明文 scheme 外部网页跳转打开小程序 有时候会显示该链接无法访问 部分用户会这样 而且没有超过单日打开上限

    const jumpBtn = document.getElementById('jumpBtn');
    const miniProgramUrl = 'weixin://dl/business/?appid=wx5a95cfae8614033a&path=pages/home/index';

    jumpBtn.addEventListener('click', function() {
        const openResult = window.open(miniProgramUrl);
        if (!openResult) {
            window.location.href = miniProgramUrl;
        }
        const a = document.createElement('a');
        a.href = miniProgramUrl;
        a.target = '_blank';
        a.click();
    });
    window.onload = function() {
        location.href = miniProgramUrl;
    };
回答关注问题邀请回答
收藏

2 个回答

  • 社区运营专员-zheng
    社区运营专员-zheng
    2天前

    你好,如需获取营销功能需满足《实物交易类小程序跳转规范》https://mp.weixin.qq.com/cgi-bin/announce?action=getannouncement&key=11759149720nm9hx&version=1&lang=zh_CN&platform=2文档中的任意一个条件提交申请,具体需以审核结果为准。




    申请路径:请登录小程序管理后台(https://mp.weixin.qq.com/),在「账号设置-服务类目-详情」选择任意商家自营类目或电商平台类目,根据提示发起获取小程序营销功能的申请。

    2天前
    有用
    回复
  • 智能回答 智能回答 本次回答由AI生成
    04-06
    有用
登录 后发表内容