Micro letter how the current Web page has stopped access to the resolve, 366API free solutions

We do marketing or promotion when the link is vulnerable to interception micro-channel, resulting in open prompt in the micro letter "stopped to visit the page", it can not app downloads and so on. Then you need to download the app directly within the micro-channel function, many users do not know such an implementation, the following will give you explain 366API solutions.

I. First, we talk about the use of 366API platform:


2, copy and paste the link into the api tool box, click on the link and generates a short jump two-dimensional code
3, copy short connections and access to micro-channel two-dimensional code to open a link or scan code It can be.


Second, secondly we talk about how to build a micro-channel source browser jump:

1, ios end micro-letter code hints Masking go browser to open

<style type="text/css">   
    .mask {     
            position: absolute; top: 0px; filter: alpha(opacity=60); background-color: #777;   
            z-index: 1002; left: 0px;   
            opacity:0.5; -moz-opacity:0.5;   
        }   
</style>
<pre class="html" name="code"><script type="text/javascript">   
    //兼容火狐、IE8 
    //显示遮罩层  
    function showMask(){   
        $("#mask").css("height",$(document).height());   
        $("#mask").css("width",$(document).width());   
        $("#mask").show();   
    }
    //隐藏遮罩层
    function hideMask(){   
        
        $("#mask").hide();   
    }
   
</script>
<div id="mask" class="mask"></div>  
<a href="javascript:;" onclick="showMask()" >点我显示遮罩层</a><br />


Guess you like

Origin blog.51cto.com/14361275/2401063