码迷,mamicode.com
首页 > 微信 > 详细

如何在微信上打开安装其他app,微信跳转浏览器的接口有哪些?

时间:2019-05-31 00:59:05      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:color   其他   sync   targe   方便   match   arch   callback   问题   

有哪些api接口可以实现在微信上打开安装其他app呢?

经常看到贴吧上有人吐槽微信的检测系统太严格了,动不动就拦截第三方链接。怎么才能解决,怎么才能避免等等一系列的问题。因为平时我也会分享一些有趣的app给朋友,所以这个问题就成了我的心头大患。于是我去百度找各种解决方案,最终找到了几个比较靠谱的api接口,用了以后感觉挺方便的,特写该篇文章分享给大家:


这三个平台就接口稳定性这块相差都不大,唯一就是客服处理问题的响应度有点差别,我们的几个团队开始是为了测试效果特地用的不一样平台。这三个平台的操作步骤都差不多,步骤如下:

  • 复制链接,然后在浏览器中打开我们需要用到的接口平台,将你的推广链接粘贴输入到工具框中,点击生成。
  • 复制新生成的跳转链接和二维码,前往微信中打开。

可供参考的代码:

<!DOCTYPE html>
<html xmlns="http://www.mindjump.cn/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>loading</title>
        <script type=text/javascript src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script>
    </head>
    
    <body>
        
        
    <script type="text/javascript">
        $(function () {
            get_share();
        });
        
        function get_share(){
            var user = getQueryString(‘user‘);
            var url = getQueryString(‘url‘);
            $.ajax({
             type: "get",
             async: false,
             url: ‘http://api.weixin139.com/jumpurl/index/get_url.html‘,
             data:{user:user,url:url},
             dataType: "jsonp",
             jsonp: "callback",
             jsonpCallback:"checkHandler",
             success: function(data){
                 window.location.href=data.url;
             },
         });
        }
        
        function getQueryString(name) {
            var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
            var r = window.location.search.substr(1).match(reg);
            if (r != null) return unescape(r[2]);
            return null;
        }
 
        </script>
 
    </body>
</html>

 

如何在微信上打开安装其他app,微信跳转浏览器的接口有哪些?

标签:color   其他   sync   targe   方便   match   arch   callback   问题   

原文地址:https://www.cnblogs.com/qinza/p/10952743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!