Is there a good, up-to-date listing anywhere that maps User-Agent HTTP Header strings --> operating systems?
|
|
|||
|
|
|
|
What language are you developing in? That makes a huge difference in what is available to you if you want to do data-mining on the user agent string.
Nescio's response provides a good list. The second link under PHP in my list also contains basically the same information which is simple enough that you should be able to translate it to any language. |
|||
|
|
|
Here's a quick list... let me know if I missed one you are interested in. // Match user agent string with operating systems |
||||
|
|
|
Below link lists famous Operating systems which can be detected from user agents. http://www.geekpedia.com/code47_Detect-operating-system-from-user-agent-string.html The below link lists common useragents. http://www.seehowitruns.net/index.php?report=1&action=view_report&x=2&y=10 |
|||
|
|
|
|
It's worth keeping in mind that the user agent header can easily be faked. I wouldn't rely on it for anything important. |
||||||
|
|
|
The User Agent from the browser is not something I would rely on for anything, We all use it for statistics, but we know they're not 100% accurate. I use firefox and regularly spoof IE for some sites that don't like it, my regular UA is:
I sometimes use a firefox extension to change it to:
when you are looking at it, you would need to parse the different parts, the OS is the third part of the semicolon-delimited values between brackets. |
||
|
|
|
|
It's nearly always a bad idea to do UA sniffing. You can't rely on it at all. If you want to sent the client a response specific to its environment you should perhaps distinguish differences from content-type or encoding. These are rock-solid specified. |
||
|
|
