Tagged Questions
A user-agent is a string in the header of an HTTP request that identifies the browser, version, device, operating system, and other information about the device from which the request originated.
99
votes
22answers
97k views
Auto detect mobile browser (via user-agent?)
How can I detect if a user is viewing my web site from a mobile web browser so that I can then auto detect and display the appropriate version of my web site?
57
votes
9answers
57k views
What is the iPad user agent?
Now that the iPad craze is officially open, it's time to think websites also for the iPad. From what I gather, the iPad is using iPhone OS, but with a different screen resolution from the iPhone/iPod ...
34
votes
9answers
9k views
How big can a user agent string get?
If you were going to store a user agent in a database, how large would you accomdate for?
I found this technet article which recommends keeping UA under 200. It doesn't look like this is defined in ...
19
votes
2answers
4k views
Looking for a Java User Agent String Parser
Does anyone know of a great library in java for parsing user agent strings? We have written a custom one, but this seems like a common problem for many people. I would guess there is a good library ...
18
votes
8answers
8k views
Fetch a Wikipedia article with Python
I try to fetch a Wikipedia article with Phython's urllib:
f = urllib.urlopen("http://en.wikipedia.org/w/index.php?title=Albert_Einstein&printable=yes")
s = f.read()
f.close()
However ...
15
votes
7answers
8k views
Detect 64-bit or 32-bit Windows from User Agent or Javascript?
I want to offer the right version of a download. The versions I have are:
32-bit Windows
64-bit Windows
Linux
Detecting Linux using the User Agent field is easy; but is it possible to reliably ...
13
votes
5answers
369 views
Import from web - set user agent in Mathematica
when I connect to my site with Mathermatica (Import["mysite","Data"]) and look at my Apache log I see:
99.XXX.XXX.XXX - - [22/May/2011:19:36:28 +0200] "GET / HTTP/1.1" 200 6268 "-" ...
13
votes
2answers
3k views
Detect mobile browser (not just iPhone) in python view
I have a web application written in Django that has one specific page I'd like to implement a mobile version of the template (and slightly different logic) for. I'd like to be able to implement it ala ...
13
votes
5answers
6k views
Parsing HTTP User-Agent string
What is the best method to parse a User-Agent string in Python to reliably detect
Browser
Browser version
OS
Or perhaps any helper library that does it
12
votes
2answers
4k views
Code to parse user agent string?
As strange as I find this, I have not been able to find a good PHP function anywhere which will do an intelligent parse of a user agent string? Googled it for about 20 minutes now.
I have the string ...
12
votes
4answers
5k views
Changing user agent on urllib2.urlopen
How can I download a webpage with a user agent other than the default one on urllib2.urlopen?
11
votes
1answer
2k views
Modify HTTP Headers for a JSONP request
I am using jquery to build a request to the Twitter Search API. I am using jsonp, as is needed for cross-domain requests. However, the Twitter API specifies that you should set a unique User-Agent for ...
11
votes
10answers
14k views
Mobile detection using Javascript
Is there a way to detect mobile devices using Javascript? Also, I researched that there are such an XML which contains user-agents that could help to identify the mobile handsets.
Many thanks.
-V2
10
votes
2answers
5k views
What is the iOS 5 user-agent string?
What is the iOS 5.0 user-agent string?
From this SO question: what-is-the-iphone-4-user-agent, I assume it is something similar, but need confirmation.
10
votes
2answers
10k views
Setting user agent of a java URLConnection
I'm trying to parse a webpage using Java with URLConnection. I try to set up the user-agent like this:
java.net.URLConnection c = url.openConnection();
c.setRequestProperty("User-Agent", "Mozilla/5.0 ...
9
votes
3answers
3k views
Rails Browser Detection Methods
Hey Everyone, I was wondering what methods are standard within the industry to do browser detection in Rails? Is there a gem, library or sample code somewhere that can help determine the browser and ...
9
votes
2answers
691 views
What software is sending User-Agent “Test Certificate Info”?
Google is surprisingly mute on this issue.
In my company's web software error logs, we're seeing multiple individuals with an Apache access log entry that has this in it: ... HTTP/1.1" 500 - "-" ...
9
votes
3answers
557 views
Why “Mozilla” string is present on all browser's User Agent?
If you look on IE user agents you will see Mosilla string as well. Who knows why?
8
votes
1answer
469 views
Is it possible to use HttpBrowserCapabilities from a c# console application?
I need to parse UserAgent strings from a console app and this seems like a simple way to do it, but I obviously don't have an HttpRequest object and can't seem to make a fake one with a User-Agent ...
8
votes
4answers
488 views
.NET lib for interpreting user agent strings
Are there and .NET libs out there that will interpret stored user agent strings and give you a nice strongly typed object with the contained information?
8
votes
5answers
816 views
How many IE6 users are real users?
I'm supporting an existing website and IE6 suppport seems to come up given the amount of rich AJAX and other technology sprinkled into the solution. IE6 is definitely going the way of the dinosaur, ...
8
votes
6answers
9k views
Operating System from User-Agent HTTP Header
Is there a good, up-to-date listing anywhere that maps User-Agent HTTP Header strings --> operating systems?
7
votes
1answer
395 views
URLscan: block empty user agent
I'm able to block specific user agent, but i like to block all requests with a empty user agent using urlscan 3.1. Anyone knows how to do this?
7
votes
2answers
3k views
Is there an online user agent database?
How do you parse your user agent strings? I'm looking to get:
Browser
Browser Version
OS
OS Version
from a user agent string. My app is written in perl and was previously using ...
7
votes
3answers
8k views
HTML Parsing Error
I can't find out what the problem is, and why I keep receiving this error in Internet Explorer 8, as it's the only error that I am receiving. Any thoughts as to what it means, or a simple solution? I ...
6
votes
1answer
90 views
user agent switcher
Is there something better than the user agent switcher on firefox/chrome? I tried the one in firefox and it doesn't seem to work well.
For example -
We're sorry, but we could not fulfill your ...
6
votes
5answers
482 views
Mobile browser detection?
We are looking for a way to determine if an user is using a mobile browser.
We need to do that in PHP, by parsing the user agent string. I know this method has got many caveats, but we really need to ...
6
votes
4answers
603 views
Detecting .NET version without UserAgent string
Most modern browsers (Chrome 10, Firefox 4, IE9) are all shortening their UserAgent identifiers. As a result, the supported .NET versions are no longer sent to the server.
In order to allow our ...
6
votes
5answers
6k views
Mimicing iPhone user agent in Chrome?
I'm tinkering with a phpbb mod which adds a skin for mobile phones, and to work on it in my computer I want to mimic an iphone. In Firefox I manage to do this using the "user agent switcher" extension ...
6
votes
2answers
778 views
Best practices for custom http user-agent strings?
I'm developing an application that communicates with an internal web service using HTTP.
Are there any "best practices" for custom user-agent strings so that I can put a nice one in my app? It's a ...
6
votes
3answers
329 views
Is there a good tutorial for figuring out what a website is doing so your program can do the same thing?
Is there a good guide or tutorial for people who need to programmatically interact with dynamic websites? There's been a rash of Perl questions about that lately, and I haven't found a good resource ...
6
votes
5answers
855 views
How can I fool a site that looks at the JavaScript object 'navigator' to see that I'm not on Windows?
I am trying to a website, however, it only works under Windows and Mac because they use the use navigator.platform from JavaScript to find out the architecture I run on. Of course, they also use the ...
6
votes
3answers
372 views
MDDR in user agent string
What do MDDR means in a user agent string?
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MDDR; InfoPath.1; .NET CLR ...
6
votes
3answers
980 views
HTML and CSS in URLs causing 404 errors (User Agent = Trident/4.0)
I've been getting some 404s with snippets of code (CSS, HTML and JavaScript) in the URL.
As best as I can tell the user is progressing through the site just fine during their session - its an ...
5
votes
1answer
147 views
Security: Block bad spiders and bots from access to website using htaccess and HTTP_USER_AGENT
When building an htaccess rule to block common spiders and bots, what HTTP_USER_AGENT headers should be filtered?
RewriteCond %{HTTP_USER_AGENT} ^BlackWidow [OR]
RewriteCond %{HTTP_USER_AGENT} ...
5
votes
1answer
55 views
GWT Browser distinction in Client
I try to find the current Browser for an specific Hack in GWT.
like: (View-class)
if( GWT.getBrowserName().contains("IE") ) {
// DOM.setElementPropertyBoolean( ... Hack
}else {
// normal ...
5
votes
3answers
2k views
What is the Blackberry PlayBook's user agent?
What is the User-Agent string for the Blackberry PlayBook's web browser?
5
votes
2answers
2k views
How to get UIWebView User-Agent
I've got a problem working with one remote server. My app makes a request to a server using [NSData initWithContentsOfURL:] method and as a response I get website's url which I open in UIWebView.
...
5
votes
2answers
1k views
JavaScript - get detailed information about the browser
Basically I'm looking for something to give me easy access to information like useragentstring.com, but in JS, without me parsing the user agent and looking for each possible bit of text. The object ...
5
votes
1answer
204 views
What IE configuration contains “MSIE 8” and “MSIE 6”?
Anyone knows what kind of configuration leads to MSIE 8 report a string which also contains MSIE 6 (stripped down version to minimums)?
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; ...
5
votes
2answers
1k views
Regexp that matches user-agents of end-user browsers but NOT crawlers with >90 % accuracy
I'm trying to construct a regexp that will evaluate to true for User-Agent:s of "browsers navigated by humans", but false for bots. Needless to say the matching will not be exact, but if it gets ...
4
votes
4answers
308 views
Is it possible for $_SERVER['HTTP_USER_AGENT'] to not be set?
I've just been looking through a website's error_log and one of the error's that has been logged a few times is:
[21-Jun-2011 12:24:03] PHP Notice: Undefined index: HTTP_USER_AGENT in ...
4
votes
1answer
170 views
How to register the client who opened an email / a newsletter in ASP.net
For my internship I'm currently working on a web-based newsletter sending application in ASP.Net (C#). This application registers the open-rate of the send newsletters.
I'm using the one by one ...
4
votes
1answer
884 views
Decoding the IE9 user agent
I installed IE9 in a Windows 7 virtual machine, and was surprised to see this user agent:
Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; BOIE9;ENUSMSNIP)
In particular, the last two ...
4
votes
1answer
4k views
What is the iPad2 User-Agent string?
Does anyone know the user-agent string of the just released iPad2?
4
votes
3answers
1k views
Switching stylesheet with Javascript based on browser
I'm currently trying to edit a website for a client which uses Adobe Contribute so it uses a different stylesheet if the user is browsing from a mobile phone. The mobile phone stylesheet is much ...
4
votes
2answers
2k views
How to set custom User-Agent with apache http client library 4.1?
How to make HTTPClient use custom User-Agent header?
The following code submits empty user-agent. What am I missing?
import java.io.IOException;
import org.apache.http.HttpEntity;
import ...
4
votes
3answers
415 views
How can I make a simple browser user-agent parser in Perl?
I needed to make a simple browser user agent parser in Perl. I have found a PHP code that does this but my knowledge is rather limited (esp. in regular expressions). So, here is the code whose Perl ...
4
votes
1answer
1k views
HttpWebRequest.UserAgent : What does it do
I read this MSDN like about it and ran its example.
http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.useragent.aspx
when I change the uSerAgnet to something like "blah", the output ...
4
votes
2answers
366 views
Change user agent string
I want to change a USER AGENT string in Internet Explorer whilst it is running (or after launching). So I can't change through a registry key. Is there any other way to do this?