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 touch. So suddenly, the assumption that iPhone OS = iPhone screen resolution becomes false. Sounds like many sites may have to revise their user-agent -> css mapping.

So, can anyone with access to the iPad or the iPad SDK give us the user-agent string?

Thanks in advance.

link|improve this question

30% accept rate
1  
How would you want to adapt to the iPad when you cannot be sure that your changes fit? – Gumbo Jan 28 '10 at 10:50
9  
I think the idea is to make sure that when someone loads your site on the iPad, it's not going to think it's an iPhone. The user agent is important for any application or website that detects and acts on it. – Philip Morton Jan 28 '10 at 10:53
1  
craze? The craze was for the iPad that does not exists, and lasted 5 years. – Stefano Borini Jan 28 '10 at 11:59
13  
What I mean is that the craze was for a product that is not what has been announced. This is not a netbook. It's a dumb marketing gimmick and store chaperone which does nothing more than Apple authorize you to do, namely, spend money on their marketplace. It's a giant step backward in terms of an open and competitive market for software development, and it has no features worth buying. This product is the biggest delusion ever I got from Apple since 10 years, in particular because I really needed a OSX Tablet to, you know, compute on the go. Not an impractical, useless, dumb, giant ipod touch. – Stefano Borini Jan 29 '10 at 3:30
15  
Stefano Borini's comment is pretty funny 16 months later – matt b May 17 '11 at 18:23
show 5 more comments
feedback

9 Answers

up vote 64 down vote accepted

Mozilla/5.0(iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10

link|improve this answer
Thanks, that looks good. – Yoric Feb 12 '10 at 7:26
7  
The accepted answer above isn't it anymore. You can't check the user agent for 'iPhone', has to be 'iPad'. I think jleedev's link above is closer to the real deal: Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10 – Jon Raasch Jul 8 '10 at 19:17
1  
Hey folks, here's the user agent details in the Safari Developer Library: developer.apple.com/library/safari/#technotes/tn2010/tn2262/… – Matt Setter Jan 31 at 10:30
3  
Here's another, more comprehensive and informative link: developer.apple.com/library/IOs/#documentation/… – Matt Setter Jan 31 at 11:03
feedback

From the simulator, in iPad mode:

Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9 (this is for 3.2 beta 1)

Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10 (this is for 3.2 beta 3)

and in iPhone mode:

Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.20 (KHTML, like Gecko) Mobile/7B298g

I don't know how reliable the simulator is, but it seems you can't detect whether the device is iPad just from the user-agent string.

(Note: I'm on Snow Leopard which the User Agent string for Safari is

Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10

)

link|improve this answer
1  
"Machintosh"? Is that a typo or is it for real? If its for real, that might be how we're supposed to detect it. – Yoric Jan 28 '10 at 12:22
Looks like the difference is suttle... note the spelling of "Machintosh" not "Macintosh" - or is this a typo? – Saul Dolgin Jan 28 '10 at 12:23
1  
Sorry it's typo. Because I can't directly copy from the simulator to the Mac. – KennyTM Jan 28 '10 at 12:24
10.5.8?? Thats the last Leopard version, but the iPad has a tweaked iPhone OS!! is your iPhone signature from the iPhone simulator or from the device? – medopal Jan 31 '10 at 6:17
1  
thats really weird!, why would the iPad report the request is coming from a desktop Safari while the iPhone reports from Mobile Safari? I think the signautre will change soon. The iPad signature is reporting from Intel CPU (wrong), Leopard OS (wrong) and Safari (wrong) – medopal Jan 31 '10 at 12:58
show 1 more comment
feedback

From a real device:

Mozilla/5.0 (iPad; U; CPU OS OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10

link|improve this answer
feedback

It's worth noting that when running in web-app mode (using the apple-mobile-web-app-capable meta tag) the user agent changes from:

Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B405 Safari/531.21.10

to:

Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405

link|improve this answer
This is also true of the iPhone. If anyone has any Apple documentation explaining this difference, I'd find that a great help. – Richard Dallaway Feb 18 '11 at 13:24
feedback

iPad 2 under 4.3.5:

Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8L1 Safari/6533.18.5

link|improve this answer
feedback

Mine says:

Mozilla/5.0 (iPad; U; CPU OS 4_3 like Mac OS X; da-dk) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8F190 Safari/6533.18.5

link|improve this answer
feedback

From Simulator 3.2 final:

Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10

link|improve this answer
feedback

Safari on iPad user agent string in iPhone OS 3.2 SDK beta 3:

Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10

More info: http://developer.apple.com/library/safari/#technotes/tn2010/tn2262/_index.html

link|improve this answer
feedback

It seems to be general consensus that every mobile apple device, iphone, ipad, or ipod uses a user agent that contains both 'Mobile' and 'Safari'.

However, using the latest SDK (4.0.1) and reading the user agent on my rails server (using request.env["HTTP_USER_AGENT"]), we never get the 'Safari' part.

No matter whether the request is being made from the simulator or a real device, debug or release, it always looks something like this:

Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_2 like Mac OS X; de-de) AppleWebKit/528.18 (KHTML, like Gecko) Mobile/7D11"

Just no 'Safari'. :-( So we have to use the 'iPhone' part to be sure. That is something apple does not recommend doing.

link|improve this answer
AppleWebKit implies Safari – Martin Konecny Jan 10 '11 at 5:34
1  
Chrome has AppleWebKit in the user agent, too. – Nestor Feb 1 '11 at 3:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.