Mindjump resolve micro-channel environment, how to download the apk file of the program

Do micro-channel marketing or promotion when downloading APK, domain names are often sealed, so that the micro-channel in normal use it? It is necessary to use some of the tools to achieve efficient operation.

First to understand the principles of micro-channel shielding. According to the principle one by one break, I do believe handy anti-seal from a year are summarized as follows: micro-channel shielding principle first automatic detection system, manual inspection is the second micro-channel staff.

 
Solution principle

this is to use some of the micro-letters BUG, Android phone, then by clicking on the link to jump directly to a micro-channel. The phone automatically opens the default browser. However, this method IOS system does not work. I can only judge wrote. Android mobile phone users click directly open the default browser or download marketing activities APK. IOS, then the first method with the above said!

Share section of source code for your reference:

<!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>

  

 

 

Guess you like

Origin www.cnblogs.com/gooly/p/10959236.html