Firefox OS User Agent

By  on  

While we consider user agent sniffing a horrible practice on the client side, UA sniffing is done quite a bit on the server side to serve up the appropriate page version of a site, or redirect to, for example, the mobile version of the site.  This can be a dangerous road but most large site with a separate mobile interface do it.  The following is the user agent for Firefox OS:

Mozilla/5.0 (Mobile; rv:18.0) Gecko/18.0 Firefox/18.0

At the moment, many large sites are sniffing for iPhone|Android instead of "Mobile", and thus they are serving their desktop site to Firefox OS devices.  Be aware of the Firefox OS user agent and update your server side logic appropriately!

Note:  Of course the version number within the user agent will update often, so detect "Mobile".

Recent Features

  • By
    Responsive Images: The Ultimate Guide

    Chances are that any Web designers using our Ghostlab browser testing app, which allows seamless testing across all devices simultaneously, will have worked with responsive design in some shape or form. And as today's websites and devices become ever more varied, a plethora of responsive images...

  • By
    Being a Dev Dad

    I get asked loads of questions every day but I'm always surprised that they're rarely questions about code or even tech -- many of the questions I get are more about non-dev stuff like what my office is like, what software I use, and oftentimes...

Incredible Demos

  • By
    MooTools 1.3 Browser Object

    MooTools 1.3 was just released and one of the big additions is the Browser object.  The Browser object is very helpful in that not only do you get information about browser type and browser versions, you can gain information about the user's OS, browser plugins, and...

  • By
    How to Create a Twitter Card

    One of my favorite social APIs was the Open Graph API adopted by Facebook.  Adding just a few META tags to each page allowed links to my article to be styled and presented the way I wanted them to, giving me a bit of control...

Discussion

  1. Matthew Felgate

    Not really worth it; Firefox OS: dead on arrival.

    • The “Most Ridiculous Quote of the Day” is brought to you by Matthew Felgate.

  2. Hm, I’ve read that Firefox OS 1.0 has Gecko 18. Weird…

    • Right; that number will vary but the point of the post is to not simply look for “Android” or “iPhone.

  3. The Firefox way should be used by Apple and Google on this.
    I love the fact that i’s “Mobile”, it makes so much more sense than IPhone, Android, Whatever…

    The content should be, if wanted, delivered by “use-case” and not “device-case”.
    Device-brand detection is like vendor-prefixes, they should be avoided as much as possible.
    Device-type detection is the right way of doing things, props to Mozilla!

  4. A user-agent string has more that one usage and as ua-strings go, this is an abomination.
    The ua-string belongs to the User-Agent and not the OS it happens to be installed on and thus should indicate which OS it is installed on.
    A user-agent string as “a strong values statement” ? (https://bugzilla.mozilla.org/show_bug.cgi?id=777710)
    Words fail…

  5. Why can’t there be a standard on User agents; where we don’t have to use a term like sniff to detect it.
    What is blocking the browsers to have a standard on user agents.

  6. It looks like this useragent isn’t even unique to a Firefox OS device: it could theoretically be transmitted by any Firefox Mobile browser installation with those versions of the components.

    All this means is that this device will be detected by all analytic software as either “desktop device” (if it’s a poor system) or “Generic Mobile Firefox device” if it’s a good one: basically put into the “generic, don’t care” pile.

    Either way, the big data analytics that are so popular nowadays will never organically credit Firefox OS with any market share, because it’s essentially cloaked. Microsoft made a similar mistake with Windows 8 devices cloaking themselves. And if Firefox OS doesn’t appear in the stats, then it effectively doesn’t exist for developers. They can’t target it specifically server-side except as “generic Firefox Mobile device”…

    The whole thing seems to be a case of almost-religious beliefs working against the success of the product.

    If an OS isn’t visible, it will never count, and users will be shortchanged as well.

    (Also, anyone just checking for “Android” and “iPhone” only on server-side really should get a better system).

  7. Thanks for this post. Previously I was trying to detect weather the userAgent was a mobile one or not by checking for each and every mobile browser (Android ,blackberry ,etc) but that was a impossible task due to sheer number of browsers out there. Your advice about checking “Mobile” inside the userAgent was a life saver

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!