chrome浏览器模拟微信

Posted 微笑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了chrome浏览器模拟微信相关的知识,希望对你有一定的参考价值。

 

浏览器 more tools->network conditions

User agent 把 select automatically 取消勾选

下面的输入框输入

微信安卓UA
mozilla/5.0 (linux; u; android 4.1.2; zh-cn; mi-one plus build/jzo54k) applewebkit/534.30 (khtml, like gecko) version/4.0 mobile safari/534.30 micromessenger/5.0.1.352
微信iPhone UA
mozilla/5.0 (iphone; cpu iphone os 5_1_1 like mac os x) applewebkit/534.46 (khtml, like gecko) mobile/9b206 micromessenger/5.0
JS判断是否微信浏览器
function isWeixinBrowser(){
    var ua = navigator.userAgent.toLowerCase();
    return (/micromessenger/.test(ua)) ? true : false ;
}

 

以上是关于chrome浏览器模拟微信的主要内容,如果未能解决你的问题,请参考以下文章

用chrome模拟微信浏览器访问需要OAuth2.0网页授权的页面

兼容ie8,firefox,chrome浏览器的代码片段

谷歌浏览器 模拟微信浏览器user-agent

Selenium使用Chrome模拟手机浏览器方法解析

Python 自动化 - 浏览器chrome打开F12开发者工具自动Paused in debugger调试导致无法查看网站资源问题原因及解决方法,javascript反调试问题处理实例演示(代码片段

微信公众平台开发调试方法