限制必须使用微信打开网页
作者:luckystar
日期:
限制必须使用微信打开页面
在页面JS中加入下面的代码:
function is_weixin(){
var ua = navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i)=="micromessenger") {
return true;
} else {
return false;
}
}
if (!is_weixin()) {
window.location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxdf3f22ebfe96b912&redirect_uri=xxx&response_type=code&scope=snsapi_base&state=hyxt#wechat_redirect';
}
微信内置一个浏览器,userAgent为micromessenger。
作者:qincidong
出处:http://qincidong.github.io/blog/2014/11/26/use-weixin-to-open-url.html
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。
出处:http://qincidong.github.io/blog/2014/11/26/use-weixin-to-open-url.html
本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。