Micro-channel built-in browser can not open the link how to do, 366API achieve micro-channel hoplinks

Whether H5 Web links or download links APP's share will be in the micro-channel micro-channel built-in browser or the built-in browser is blocked. This is the pressure Tencent third-party domain name policy implementation. Was blocked in the micro-channel link means is not normally open, usually this case micro-channel will give tips "stopped to visit the Web site," so to this problem, close this article to share treatment options before us company . First, if we do not have professional technical team, we can look for a provider of a team of this technology, we have been using before is 366API platform interface, the results were good, very stable. Then if we have our own technical team, you can write your own program to jump, then as we explain next 366API:


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

1, we need to use the browser to open the  366API  platform Address: http://www.366api.cn/
2, copy and paste the link into the api tool box, click the Generate Jump short link and two-dimensional code
3, copy and short connections to the micro-channel two-dimensional code to open or scan code to link.
Second, secondly we talk about how to build a micro-channel jumps browser source code: 


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

    // is compatible with Firefox, IE8 

    // display mask layer  

    function showMask(){   

        $("#mask").css("height",$(document).height());   

        $("#mask").css("width",$(document).width());   

        $("#mask").show();   

    }

    // hide the mask layer

    function hideMask(){   

        

        $("#mask").hide();   

    }

   

</script>


<div id="mask" class="mask"></div>  

<a href="javascript:;" onclick="showMask()"> point I display mask layer </a> <br />


Guess you like

Origin blog.51cto.com/14359461/2400423