Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
网络服务器是否知道页面请求是来自网络浏览器还是来自 IOS 应用程序中的 UIWebView。
例如,是否有任何网络服务器能够区分从网络浏览器请求的网页与 iOS 上的 Instapaper 应用程序?
用户代理会有所作为。使用以下检测代码
var isWebView = /(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(navigator.userAgent); if(isWebView) { alert("Page serving through UIWebView"); } else { alert("Page serving through Browser"); }
是的,每个用户代理都是不同的。