码迷,mamicode.com
首页 > 移动开发 > 详细

根据userAgent判断客户端是否手机、操作系统、浏览器等信息

时间:2014-11-25 12:51:27      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:cWeb   style   blog   http   io   ar   color   os   使用   

User Agent中文名为用户代理,是Http协议中的一部分,属于头域的组成部分,User Agent也简称UA。它是一个特殊字符串头,是一种向访问网站提供你所使用的浏览器类型及版本、操作系统及版本、浏览器内核、等信息的标识。通过这个标识,用户所访问的网站可以显示不同的排版从而为用户提供更好的体验或者进行信息统计;例如用手机访问谷歌和电脑访问是不一样的,这些是谷歌根据访问者的UA来判断的。UA可以进行伪装。(wiki)


分析浏览器的User-Agent 我们可以收集客户端相关信息:是否手机、操作系统、浏览器等信息。

 

效果:http://1.billo.sinaapp.com/


以下为获取json格式ua的函数

ua为字符串格式的 User-Agent 字段


import urllib
import urllib2
import json
def getUA(ua):
    ua = urllib.quote(ua)
    url = "http://www.useragentstring.com/?uas=%s&getJSON=all" %ua
    keys = {
            "Host":"www.useragentstring.com",
            "User-Agent":"Mozilla/5.0 (Windows NT 6.4; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0"
        }
    req = urllib2.Request(url)
    for key in keys:
        req.add_header(key,keys[key])
    j = urllib2.urlopen(req).read()
    j = json.loads(j)
return j
 



request.headers[‘User-Agent‘] 可以返回 User-Agent 的字符串

然后通过useragentstring这个网站的api可以获得一个解析后的User-Agent的json




识别是否为手机客户端的只要识别User-Agent中是否有"Mobile"字段即可

 

 

系统识别

如果是windows系统,解析User-Agent得到的json中的os_name是windows是内核版本 


目前主流的系统标识对应如下:

"Windows NT 6.4":"Windows 10",

"Windows NT 6.3":"Windows 8.1",

"Windows NT 6.2":"Windows 8",

"Windows NT 6.0":"Windows vista",

"Windows NT 6.1":"Windows 7",

"Windows NT 5.1":"Windows XP",

建立字典遍历这些标识便可

 



useragentstring返回的agent_name无法识别部分浏览器,只能显示内核


浏览器识别

IE浏览器判断的标准是”MSIE“字段

UC浏览器的判断标准是”UCWEB“字段”UCBrowser”字段

opera浏览器的判断标准是“opera“字段

搜狗浏览器的判断标准是”SE“”MetaSr“字段

搜狗手机浏览器的判断标准是SogouMobileBrowser"字段

chrome浏览器的判断标准是chrome字段

Safari浏览器的判断标准是safari字段

Firefox的判断标准是Firefox字段

QQ浏览器包含”TencentTraveler“或者”QQBrowser“字段

360浏览器的判断标准是”360SE”字段

Theworld浏览器的判断标准是”The world“字段

遨游浏览器的判断标准是”Maxthon“字段

 

 

下面建立一个字典存储主流浏览器类型:

Browser = {

        "SogouMobileBrowser":"搜狗手机浏览器",

        "UCBrowser":"UC浏览器",

        "UCWEB":"UC浏览器",

        "Opera":"Opera浏览器",

        "QQBrowser":"QQ浏览器",

        "TencentTraveler":"QQ浏览器",

        "MetaSr":"搜狗浏览器",

        "360SE":"360浏览器",

        "The world":"世界之窗浏览器",

        "Maxthon":"遨游浏览器",

        }

遍历这些标识便可

 

一个根据userAgent判断操作系统和浏览器类型的例子

#coding:utf-8
import tornado.web
import sys
import urllib
import urllib2
import json
import os.path
from tornado.httpclient import AsyncHTTPClient



class WelcomeHandler(tornado.web.RequestHandler):
    def get(self):
        ua = self.request.headers['User-Agent']
        isMobile = "你不是手机客户端" if ua.find("Mobile") == -1 else "你是手机客户端"
        uainfor = self.getUA(ua)
        self.render('index.html',
                    user=self.current_user,
                    head=self.request.headers['User-Agent'],
                    h=isMobile,
                    ua=uainfor
                    )
    def getUA(self, ua):
        ua_url = urllib.quote(ua) # 转url编码
        url = "http://www.useragentstring.com/?uas=%s&getJSON=all" % ua_url
        keys = {
                "Host":"www.useragentstring.com",
                "User-Agent":"Mozilla/5.0 (Windows NT 6.4; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0"
            }
        req = urllib2.Request(url)
        for key in keys:
            req.add_header(key,keys[key])
        j = urllib2.urlopen(req).read()
        j = json.loads(j)
        Windows = {
        "Windows NT 6.4":"Windows 10",
        "Windows NT 6.3":"Windows 8.1",
        "Windows NT 6.2":"Windows 8",
        "Windows NT 6.0":"Windows 8",
        "Windows NT 6.1":"Windows 7",
        "Windows NT 5.1":"Windows XP",
        }
        Browser = {
        "SogouMobileBrowser":"搜狗手机浏览器",
        "UCBrowser":"UC浏览器",
        "UCWEB":"UC浏览器",
        "Opera":"Opera浏览器",
        "QQBrowser":"QQ浏览器",
        "TencentTraveler":"QQ浏览器",
        "MetaSr":"搜狗浏览器",
        "360SE":"360浏览器",
        "The world":"世界之窗浏览器",
        "Maxthon":"遨游浏览器",
        }
        for name in Windows:
            if ua.find(name) != -1:
                j["os_name"] = Windows[name]
        for name in Browser:
            if ua.find(name) != -1:
                j["agent_name"] = Browser[name]
        return j

settings = {
        "template_path": os.path.join(os.path.dirname(__file__), "templates"),
        "debug": True,
}

# application should be an instance of `tornado.web.Application`,
# and don't wrap it with `sae.create_wsgi_app`
application = tornado.web.Application([
        (r'/', WelcomeHandler),
    ], **settings)



效果如下:
bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣


根据userAgent判断客户端是否手机、操作系统、浏览器等信息

标签:cWeb   style   blog   http   io   ar   color   os   使用   

原文地址:http://blog.csdn.net/huangxiongbiao/article/details/41478235

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!